diff options
author | Marcel Molina <marcel@vernix.org> | 2005-11-17 00:32:16 +0000 |
---|---|---|
committer | Marcel Molina <marcel@vernix.org> | 2005-11-17 00:32:16 +0000 |
commit | 5cb2aa722deea44a9aac1ec2469611759a22bf75 (patch) | |
tree | e7c599bf4e3a995151ece6a9696bc93b96becb3b /activesupport | |
parent | fc51104fe27cf5ff9a420d43ea59adccfc8846c8 (diff) | |
download | rails-5cb2aa722deea44a9aac1ec2469611759a22bf75.tar.gz rails-5cb2aa722deea44a9aac1ec2469611759a22bf75.tar.bz2 rails-5cb2aa722deea44a9aac1ec2469611759a22bf75.zip |
Rename Version constant to VERSION. Closes #2802.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3065 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/CHANGELOG | 4 | ||||
-rw-r--r-- | activesupport/Rakefile | 2 | ||||
-rw-r--r-- | activesupport/lib/active_support/version.rb | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG index d9a94b47d1..5aa7d23de3 100644 --- a/activesupport/CHANGELOG +++ b/activesupport/CHANGELOG @@ -1,3 +1,7 @@ +*SVN* + +* Rename Version constant to VERSION. #2802 [Marcel Molina Jr.] + *1.2.3* (November 7th, 2005) * Change Inflector#constantize to use eval instead of const_get. [Nicholas Seckar] diff --git a/activesupport/Rakefile b/activesupport/Rakefile index af9ddee98c..0666f62c36 100644 --- a/activesupport/Rakefile +++ b/activesupport/Rakefile @@ -6,7 +6,7 @@ require File.join(File.dirname(__FILE__), 'lib', 'active_support', 'version') PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' PKG_NAME = 'activesupport' -PKG_VERSION = ActiveSupport::Version::STRING + PKG_BUILD +PKG_VERSION = ActiveSupport::VERSION::STRING + PKG_BUILD PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" RELEASE_NAME = "REL #{PKG_VERSION}" diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb index 73e5693294..b9d751e744 100644 --- a/activesupport/lib/active_support/version.rb +++ b/activesupport/lib/active_support/version.rb @@ -1,5 +1,5 @@ module ActiveSupport - module Version #:nodoc: + module VERSION #:nodoc: MAJOR = 1 MINOR = 2 TINY = 3 |