1
0
Fork 0
mirror of https://github.com/jnunemaker/httparty synced 2023-03-27 23:23:07 -04:00

Ensure that guard isn't installed on travis.

This commit is contained in:
John Nunemaker 2012-04-15 23:18:23 -04:00
parent 865ded4616
commit 83316de971
2 changed files with 7 additions and 3 deletions

View file

@ -6,3 +6,4 @@ rvm:
- 1.9.3 - 1.9.3
notifications: notifications:
email: false email: false
bundler_args: --without development

View file

@ -6,6 +6,9 @@ gem 'cucumber', '~> 0.7'
gem 'fakeweb', '~> 1.2' gem 'fakeweb', '~> 1.2'
gem 'rspec', '~> 1.3' gem 'rspec', '~> 1.3'
gem 'mongrel', '1.2.0.pre2' gem 'mongrel', '1.2.0.pre2'
gem 'guard'
gem 'guard-rspec' group :development do
gem 'guard-bundler' gem 'guard'
gem 'guard-rspec'
gem 'guard-bundler'
end