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 --- railties/lib/version.rb | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 railties/lib/version.rb (limited to 'railties/lib') diff --git a/railties/lib/version.rb b/railties/lib/version.rb new file mode 100644 index 0000000000..cbe47db34f --- /dev/null +++ b/railties/lib/version.rb @@ -0,0 +1,9 @@ +module Rails + module Version #:nodoc: + MAJOR = 0 + MINOR = 13 + TINY = 1 + + STRING = [MAJOR, MINOR, TINY].join('.') + end +end -- cgit v1.2.3