aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/version.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/version.rb')
-rw-r--r--activesupport/lib/version.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/activesupport/lib/version.rb b/activesupport/lib/version.rb
new file mode 100644
index 0000000000..71bb7592a2
--- /dev/null
+++ b/activesupport/lib/version.rb
@@ -0,0 +1,9 @@
+module ActiveSupport
+ module Version
+ MAJOR = 1
+ MINOR = 1
+ TINY = 1
+
+ STRING = [MAJOR, MINOR, TINY].join('.')
+ end
+end