aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-08-31 19:09:16 -0500
committerJoshua Peek <josh@joshpeek.com>2009-08-31 19:09:16 -0500
commit66d713fc8f62e270ac21f6c413d6527fbf30dc52 (patch)
treeb88eabf7f5a2a93c4e7418728d952aacbbf08538 /activemodel/lib/active_model
parentffd2cf167040b60c26d97c01598560c87bd4b2d3 (diff)
downloadrails-66d713fc8f62e270ac21f6c413d6527fbf30dc52.tar.gz
rails-66d713fc8f62e270ac21f6c413d6527fbf30dc52.tar.bz2
rails-66d713fc8f62e270ac21f6c413d6527fbf30dc52.zip
License, version, and gemspec for ActiveModel. Ship it!
Diffstat (limited to 'activemodel/lib/active_model')
-rw-r--r--activemodel/lib/active_model/version.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/activemodel/lib/active_model/version.rb b/activemodel/lib/active_model/version.rb
new file mode 100644
index 0000000000..0c233b7b4f
--- /dev/null
+++ b/activemodel/lib/active_model/version.rb
@@ -0,0 +1,9 @@
+module ActiveModel
+ module VERSION #:nodoc:
+ MAJOR = 3
+ MINOR = 0
+ TINY = "pre"
+
+ STRING = [MAJOR, MINOR, TINY].join('.')
+ end
+end