Skip to content

Commit

Permalink
using AREL from the environment if it exists
Browse files Browse the repository at this point in the history
  • Loading branch information
tenderlove committed Jul 25, 2010
1 parent 53fbbf4 commit 13df581
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Gemfile
@@ -1,6 +1,11 @@
source 'http://rubygems.org'

gem "arel", :git => "git://github.com/rails/arel.git"
if ENV['AREL']
gem "arel", :path => ENV['AREL']
else
gem "arel", :git => "git://github.com/rails/arel.git"
end

gem "rails", :path => File.dirname(__FILE__)

gem "rake", ">= 0.8.7"
Expand Down

0 comments on commit 13df581

Please sign in to comment.