Skip to content

Commit

Permalink
Update Gemfile to exclude ruby-debug installation on travis-ci.org
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Feb 23, 2012
1 parent 2e6dbc9 commit b1759d7
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
source 'http://production.cf.rubygems.org/'
source 'http://rubygems.org/'

gem 'spree', :git => "git://github.com/spree/spree.git"

group :test do
gem 'ffaker'
end

if RUBY_VERSION < "1.9"
gem "ruby-debug"
else
gem "ruby-debug19"

unless ENV["CI"]
if RUBY_VERSION < "1.9"
gem "ruby-debug"
else
gem "ruby-debug19"
end
end

gemspec

0 comments on commit b1759d7

Please sign in to comment.