aboutsummaryrefslogtreecommitdiffstats
path: root/activejob
diff options
context:
space:
mode:
authorRobin Dupret <robin.dupret@gmail.com>2014-08-30 11:58:23 +0200
committerRobin Dupret <robin.dupret@gmail.com>2014-08-30 11:58:23 +0200
commit84c0f73c8daf50fa98d1c4a0c1bab8708e49d0e4 (patch)
tree6a532ace0c67031e164b26d2e4374bad3ca7500c /activejob
parent4c917dae9a4933b2116d936293a31a8b5159c145 (diff)
downloadrails-84c0f73c8daf50fa98d1c4a0c1bab8708e49d0e4.tar.gz
rails-84c0f73c8daf50fa98d1c4a0c1bab8708e49d0e4.tar.bz2
rails-84c0f73c8daf50fa98d1c4a0c1bab8708e49d0e4.zip
Refer to the library name instead of the constant
When we are loading a component and we want to know its version, we are actually not speaking about the constant but the library itself. [ci skip] [Godfrey Chan & Xavier Noria]
Diffstat (limited to 'activejob')
-rw-r--r--activejob/lib/active_job/gem_version.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activejob/lib/active_job/gem_version.rb b/activejob/lib/active_job/gem_version.rb
index d41c916085..1f25d48326 100644
--- a/activejob/lib/active_job/gem_version.rb
+++ b/activejob/lib/active_job/gem_version.rb
@@ -1,5 +1,5 @@
module ActiveJob
- # Returns the version of the currently loaded ActiveJob as a <tt>Gem::Version</tt>
+ # Returns the version of the currently loaded Active Job as a <tt>Gem::Version</tt>
def self.gem_version
Gem::Version.new VERSION::STRING
end