aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/lib/active_job.rb
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2016-08-06 18:40:07 +0200
committerXavier Noria <fxn@hashref.com>2016-08-06 18:40:07 +0200
commit93c9534c9871d4adad4bc33b5edc355672b59c61 (patch)
treec9d8782bfb88207cd5857eb903b5f169fe593fea /activejob/lib/active_job.rb
parent4c208254573c3428d82bd8744860bd86e1c78acb (diff)
downloadrails-93c9534c9871d4adad4bc33b5edc355672b59c61.tar.gz
rails-93c9534c9871d4adad4bc33b5edc355672b59c61.tar.bz2
rails-93c9534c9871d4adad4bc33b5edc355672b59c61.zip
applies new string literal convention in activejob/lib
The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
Diffstat (limited to 'activejob/lib/active_job.rb')
-rw-r--r--activejob/lib/active_job.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/activejob/lib/active_job.rb b/activejob/lib/active_job.rb
index 4b9065cf50..20ca7085c6 100644
--- a/activejob/lib/active_job.rb
+++ b/activejob/lib/active_job.rb
@@ -21,10 +21,10 @@
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#++
-require 'active_support'
-require 'active_support/rails'
-require 'active_job/version'
-require 'global_id'
+require "active_support"
+require "active_support/rails"
+require "active_job/version"
+require "global_id"
module ActiveJob
extend ActiveSupport::Autoload