Skip to content

Commit

Permalink
Remove bundler from the Gemfile (#1110)
Browse files Browse the repository at this point in the history
This commit:

- removes bundler from the Gemfile;
- fixes CI builds; and
- downgrades dependencies for older Ruby versions.
  • Loading branch information
mojavelinux authored and pyrmont committed May 27, 2019
1 parent e957c74 commit e74066d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 0 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,9 @@ rvm:
- "2.3"
- "2.4"
- "2.5"

cache:
bundler: true
bundler_args: --without development
before_install:
- gem install bundler
- gem update --system
script:
- bundle exec rake
- bundle exec rubocop
8 changes: 6 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ source 'http://rubygems.org'

gemspec

gem 'bundler', '~> 1.15'
gem 'rake'

gem 'minitest', '>= 5.0'
gem 'minitest-power_assert'

gem 'parallel', '~> 1.13.0' if RUBY_VERSION < '2.2.0'
gem 'rubocop', '~> 0.49.1'

# don't try to install redcarpet under jruby
Expand All @@ -23,6 +23,10 @@ group :development do
gem 'github-markup'

# for visual tests
gem 'sinatra'
if RUBY_VERSION < '2.2.0'
gem 'sinatra', '~> 1.4.8'
else
gem 'sinatra'
end
gem 'shotgun'
end

0 comments on commit e74066d

Please sign in to comment.