Skip to content

Commit 69c8f22

Browse files
committed
Merge 59911894-test-fixes to master
[Completes #59911894]
2 parents 6ea0e6d + b5dfb65 commit 69c8f22

2 files changed

Lines changed: 10 additions & 3 deletions

File tree

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ rvm:
44
- 2.0.0
55
- 1.9.3
66
before_script: "if [[ $TRAVIS_RUBY_VERSION != '1.9.3' || $TRAVIS_SECURE_ENV_VARS != 'true' ]]; then unset CODECLIMATE_REPO_TOKEN; fi"
7+
install: bundle install --deployment --without debug
78
notifications:
89
webhooks: http://build-monitor.cfapps.io/projects/JBP/webhook
910
env:

Gemfile

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,20 @@ group :development do
44
gem 'rake'
55
gem 'redcarpet'
66
gem 'rubocop'
7-
gem 'ruby-debug-base19x', '>= 0.11.30.pre'
8-
gem 'ruby-debug-ide'
97
gem 'yard'
108
end
119

10+
group :development, :test do
11+
gem 'rspec', '>= 3.0.0.beta'
12+
end
13+
1214
group :test do
1315
gem 'codeclimate-test-reporter'
14-
gem 'rspec', '>= 3.0.0.beta'
1516
gem 'simplecov'
1617
gem 'webmock'
1718
end
19+
20+
group :debug do
21+
gem 'ruby-debug-base19x', '>= 0.11.30.pre'
22+
gem 'ruby-debug-ide'
23+
end

0 commit comments

Comments
 (0)