Skip to content

Commit

Permalink
Make rake a test gem, not dev. Do not bundle dev gems during CI. Remo…
Browse files Browse the repository at this point in the history
…ve a few ruby versions from CI (only target what middleman targets)
  • Loading branch information
Brett Bender committed Jan 20, 2015
1 parent 173cd69 commit eb8aa0f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
17 changes: 10 additions & 7 deletions .travis.yml
@@ -1,13 +1,16 @@
language: ruby
bundler_args: --without development
rvm:
- 1.8.7
- 1.9.3
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
- rbx-2.1.1
- ruby-head
- 2.0.0
- 2.2
- 2.1.1
- 2.1.0
- 2.2.0
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-2.1.1
after_success:
- coveralls
notifications:
slack:
secure: nEsVscnHHQ8H6848nmPXnyat4RFixQrPfl7KeohL9AbGo8uLH6o61bt8yr6FN9q+5XBciy+z7Y6BNkZ9YS9Dfots5CGDDO/rSgDnGcK9zYZP3Vp4eDdnlDRrPcPpqP8PKBODt4nra5T0Am/bGSbHUK68dTbWunaC1c/qi+210m4=
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -10,7 +10,6 @@ gemspec
group :development do
gem 'yard', '~> 0.8.7'
gem 'rubocop', '~> 0.28'
gem 'rake', '~> 10.4.2'
end

group :test do
Expand All @@ -21,4 +20,5 @@ group :test do
gem 'aruba', '~> 0.6.2'
gem 'haml', '~> 4.0.6'
gem 'coveralls', '~> 0.7.3', require: false
gem 'rake', '~> 10.4.2'
end

0 comments on commit eb8aa0f

Please sign in to comment.