aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2010-03-23 11:23:21 -0700
committerCarl Lerche <carllerche@mac.com>2010-03-23 11:23:21 -0700
commit195cc1402284d0e965cd96e572514fe2ff300788 (patch)
tree928588a9cc5cb2346d4324b3a9d9842d2b1f00aa /lib
parent30fb25d3abfc002b85f290587b979d54c35a2e98 (diff)
downloadrails-195cc1402284d0e965cd96e572514fe2ff300788.tar.gz
rails-195cc1402284d0e965cd96e572514fe2ff300788.tar.bz2
rails-195cc1402284d0e965cd96e572514fe2ff300788.zip
Rake is a better build tool than Thor. Move the gem building and releasing tasks to the Rakefile.
Diffstat (limited to 'lib')
-rw-r--r--lib/arel.rb4
-rw-r--r--lib/arel/version.rb3
2 files changed, 5 insertions, 2 deletions
diff --git a/lib/arel.rb b/lib/arel.rb
index ef2308ca53..ae4240bf8a 100644
--- a/lib/arel.rb
+++ b/lib/arel.rb
@@ -6,7 +6,7 @@ require 'active_support/core_ext/object/blank'
module Arel
require 'arel/algebra'
require 'arel/engines'
- autoload :Session, 'arel/session'
+ require 'arel/version'
- VERSION = "0.3.1"
+ autoload :Session, 'arel/session'
end
diff --git a/lib/arel/version.rb b/lib/arel/version.rb
new file mode 100644
index 0000000000..ab126caff4
--- /dev/null
+++ b/lib/arel/version.rb
@@ -0,0 +1,3 @@
+module Arel
+ VERSION = "0.3.1"
+end \ No newline at end of file