Skip to content

Commit

Permalink
Excludes debuggers on travis
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan McClain committed Oct 24, 2012
1 parent 73f4b96 commit e934acd
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions Gemfile
@@ -1,10 +1,13 @@
source "http://rubygems.org"

if RUBY_VERSION >= '1.9.2' && RUBY_ENGINE == 'ruby'
gem 'debugger'
end
if RUBY_VERSION == '1.8.7'
gem 'ruby-debug'
# Only install appropriate ruby debugger if we are not on travis
unless ENV['CI']
if RUBY_VERSION >= '1.9.2' && RUBY_ENGINE == 'ruby'
gem 'debugger'
end
if RUBY_VERSION == '1.8.7'
gem 'ruby-debug'
end
end
gemspec
gem "jquery-rails"

0 comments on commit e934acd

Please sign in to comment.