aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/version.rb
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2005-10-10 14:35:59 +0000
committerJamis Buck <jamis@37signals.com>2005-10-10 14:35:59 +0000
commit84eb255c500fcf3f70aa7554e8b7869616e18d6e (patch)
tree42f7822afd54bb2f67bae6ba0427b62f2990f7e0 /activesupport/lib/active_support/version.rb
parent267499ec76d633c87f150a95d3473b87163c8d51 (diff)
downloadrails-84eb255c500fcf3f70aa7554e8b7869616e18d6e.tar.gz
rails-84eb255c500fcf3f70aa7554e8b7869616e18d6e.tar.bz2
rails-84eb255c500fcf3f70aa7554e8b7869616e18d6e.zip
move lib/version.rb to lib/active_support/version.rb
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2517 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib/active_support/version.rb')
-rw-r--r--activesupport/lib/active_support/version.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb
new file mode 100644
index 0000000000..71bb7592a2
--- /dev/null
+++ b/activesupport/lib/active_support/version.rb
@@ -0,0 +1,9 @@
+module ActiveSupport
+ module Version
+ MAJOR = 1
+ MINOR = 1
+ TINY = 1
+
+ STRING = [MAJOR, MINOR, TINY].join('.')
+ end
+end