diff options
author | Javan Makhmali <javan@javan.us> | 2018-10-09 11:08:12 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-09 11:08:12 -0400 |
commit | dc63aa42b075969359699c4076ad233d66d49eec (patch) | |
tree | de853608b8412a14b0331da8e821b7b97de64e95 /app | |
parent | b1f69fa126bbeccab8abb4d427ec5cf8f4227b24 (diff) | |
parent | 34f2e9492b37cb52ae5ffe69308deecdc4cb7709 (diff) | |
download | rails-dc63aa42b075969359699c4076ad233d66d49eec.tar.gz rails-dc63aa42b075969359699c4076ad233d66d49eec.tar.bz2 rails-dc63aa42b075969359699c4076ad233d66d49eec.zip |
Merge pull request #22 from albertoalmagro/add-frozen-string-literal
Add frozen_string_literal: true
Diffstat (limited to 'app')
-rw-r--r-- | app/helpers/action_text/content_helper.rb | 2 | ||||
-rw-r--r-- | app/helpers/action_text/tag_helper.rb | 2 | ||||
-rw-r--r-- | app/models/action_text/rich_text.rb | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/app/helpers/action_text/content_helper.rb b/app/helpers/action_text/content_helper.rb index 99255494b1..b3335601f9 100644 --- a/app/helpers/action_text/content_helper.rb +++ b/app/helpers/action_text/content_helper.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + module ActionText module ContentHelper SANITIZER = Rails::Html::Sanitizer.white_list_sanitizer diff --git a/app/helpers/action_text/tag_helper.rb b/app/helpers/action_text/tag_helper.rb index 8d1ff0aaad..103b65eb97 100644 --- a/app/helpers/action_text/tag_helper.rb +++ b/app/helpers/action_text/tag_helper.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + module ActionText module TagHelper cattr_accessor(:id, instance_accessor: false) { 0 } diff --git a/app/models/action_text/rich_text.rb b/app/models/action_text/rich_text.rb index 3cedef4d5f..1f8ac0e7f7 100644 --- a/app/models/action_text/rich_text.rb +++ b/app/models/action_text/rich_text.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + # The RichText record holds the content produced by the Trix editor in a serialized `body` attribute. # It also holds all the references to the embedded files, which are stored using Active Storage. # This record is then associated with the Active Record model the application desires to have |