From 68a322005d367981ba72c6a667c16dd171803869 Mon Sep 17 00:00:00 2001 From: Marcel Molina Date: Sun, 9 Oct 2005 21:15:45 +0000 Subject: Add versioning convention from SwitchTower to all Rails components. Add --version, -v option to the 'rails' command. Closes #1840. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2508 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/Rakefile | 5 +++-- actionpack/lib/version.rb | 9 +++++++++ 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 actionpack/lib/version.rb (limited to 'actionpack') diff --git a/actionpack/Rakefile b/actionpack/Rakefile index b7059cd04f..cf412ffde6 100755 --- a/actionpack/Rakefile +++ b/actionpack/Rakefile @@ -5,10 +5,11 @@ require 'rake/rdoctask' require 'rake/packagetask' require 'rake/gempackagetask' require 'rake/contrib/rubyforgepublisher' +require File.join(File.dirname(__FILE__), 'lib', 'version') PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' PKG_NAME = 'actionpack' -PKG_VERSION = '1.9.1' + PKG_BUILD +PKG_VERSION = ActionPack::Version::STRING + PKG_BUILD PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" RELEASE_NAME = "REL #{PKG_VERSION}" @@ -239,4 +240,4 @@ task :release => [:package] do first_file = false end end -end \ No newline at end of file +end diff --git a/actionpack/lib/version.rb b/actionpack/lib/version.rb new file mode 100644 index 0000000000..76949610f0 --- /dev/null +++ b/actionpack/lib/version.rb @@ -0,0 +1,9 @@ +module ActionPack + module Version + MAJOR = 1 + MINOR = 9 + TINY = 1 + + STRING = [MAJOR, MINOR, TINY].join('.') + end +end -- cgit v1.2.3