Skip to content

Commit 549af3f

Browse files
committed
[Rails3] Better Gemfile so we can "bundle install" on all ruby platforms correctly.
1 parent a5ef772 commit 549af3f

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Gemfile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ source :rubygems
33
gemspec :path => ENV['RAILS_SOURCE']
44

55
group :development do
6-
gem 'rake'
7-
gem 'mocha', '0.9.8'
8-
gem 'shoulda', '2.10.3'
9-
gem 'ruby-debug', '0.10.3'
6+
gem 'rake', '>= 0.8.7'
7+
gem 'mocha', '>= 0.9.8'
8+
gem 'shoulda', '>= 2.10.3'
9+
platforms :mri_18 do
10+
gem "ruby-debug", ">= 0.10.3"
11+
end
1012
end

0 commit comments

Comments
 (0)