diff options
author | Robin Dupret <robin.dupret@gmail.com> | 2014-08-30 11:58:23 +0200 |
---|---|---|
committer | Robin Dupret <robin.dupret@gmail.com> | 2014-08-30 11:58:23 +0200 |
commit | 84c0f73c8daf50fa98d1c4a0c1bab8708e49d0e4 (patch) | |
tree | 6a532ace0c67031e164b26d2e4374bad3ca7500c /actionview/lib | |
parent | 4c917dae9a4933b2116d936293a31a8b5159c145 (diff) | |
download | rails-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 'actionview/lib')
-rw-r--r-- | actionview/lib/action_view/gem_version.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/lib/action_view/gem_version.rb b/actionview/lib/action_view/gem_version.rb index 7375e537e0..1f506866e9 100644 --- a/actionview/lib/action_view/gem_version.rb +++ b/actionview/lib/action_view/gem_version.rb @@ -1,5 +1,5 @@ module ActionView - # Returns the version of the currently loaded ActionView as a <tt>Gem::Version</tt> + # Returns the version of the currently loaded Action View as a <tt>Gem::Version</tt> def self.gem_version Gem::Version.new VERSION::STRING end |