aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
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 /actionpack
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 'actionpack')
-rw-r--r--actionpack/lib/action_pack/gem_version.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_pack/gem_version.rb b/actionpack/lib/action_pack/gem_version.rb
index 8658069c86..280d35adcb 100644
--- a/actionpack/lib/action_pack/gem_version.rb
+++ b/actionpack/lib/action_pack/gem_version.rb
@@ -1,5 +1,5 @@
module ActionPack
- # Returns the version of the currently loaded ActionPack as a <tt>Gem::Version</tt>
+ # Returns the version of the currently loaded Action Pack as a <tt>Gem::Version</tt>
def self.gem_version
Gem::Version.new VERSION::STRING
end