diff options
author | Matthew Draper <matthew@trebex.net> | 2017-07-10 04:59:49 +0930 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-10 04:59:49 +0930 |
commit | 92be910f6a7d918a3d1c6fce6bd9caa565bf6ab5 (patch) | |
tree | a4dafa29ffc8419449a6edab6abcd8554a2b9000 /activejob/lib/active_job/queue_adapters.rb | |
parent | 0b6309d6bc9712c06fdc42dda8ae8bd695401b7c (diff) | |
parent | 14ece5e4292053e7a40e9bd80c447745f721e217 (diff) | |
download | rails-92be910f6a7d918a3d1c6fce6bd9caa565bf6ab5.tar.gz rails-92be910f6a7d918a3d1c6fce6bd9caa565bf6ab5.tar.bz2 rails-92be910f6a7d918a3d1c6fce6bd9caa565bf6ab5.zip |
Merge pull request #29733 from kirs/frozen-activejob
Use frozen-string-literal in ActiveJob
Diffstat (limited to 'activejob/lib/active_job/queue_adapters.rb')
-rw-r--r-- | activejob/lib/active_job/queue_adapters.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activejob/lib/active_job/queue_adapters.rb b/activejob/lib/active_job/queue_adapters.rb index c8eedb6156..b89a62319a 100644 --- a/activejob/lib/active_job/queue_adapters.rb +++ b/activejob/lib/active_job/queue_adapters.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: true module ActiveJob # == Active Job adapters # |