forked from skyeagle/nested_set
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
20 lines (18 loc) · 746 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
source :rubygems
gemspec
case version = ENV['RAILS_VERSION'] || ">= 3.0.0"
when /3-0-stable/
gem "rails", :git => "git://github.com/rails/rails.git", :branch => "3-0-stable"
gem "arel", :git => "git://github.com/rails/arel.git", :branch => "2-0-stable"
when /3-1-stable/
gem "rails", :git => "git://github.com/rails/rails.git", :branch => "3-1-stable"
when /3-2-stable/
gem "rails", :git => "git://github.com/rails/rails.git", :branch => "3-2-stable"
gem "journey", :git => "git://github.com/rails/journey.git"
when /master/
gem "rails", :git => "git://github.com/rails/rails.git"
gem "arel", :git => "git://github.com/rails/arel.git"
gem "journey", :git => "git://github.com/rails/journey.git"
else
gem "rails", version
end