-
Notifications
You must be signed in to change notification settings - Fork 298
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #847 from chef/gems
Remove gem version constraints and avoid installing pry in Travis
- Loading branch information
Showing
4 changed files
with
25 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,25 @@ | ||
sudo: false | ||
rvm: | ||
- 2.5.1 | ||
- 2.4.4 | ||
bundler_args: "--jobs 7 --without docs local" | ||
language: ruby | ||
|
||
matrix: | ||
include: | ||
- rvm: 2.4.4 | ||
- rvm: 2.5.1 | ||
- rvm: ruby-head | ||
allow_failures: | ||
- rvm: ruby-head | ||
bundler_args: "--jobs 7 --without docs debug" | ||
branches: | ||
only: | ||
- 2.0-stable | ||
- 3.0-stable | ||
- master | ||
before_install: | ||
- gem update --system | ||
- gem --version | ||
- rvm @global do gem uninstall bundler -a -x -I || true | ||
- gem install bundler | ||
- bundle --version | ||
- rm -f .bundle/config | ||
before_script: | ||
- git config --global user.email "[email protected]" | ||
- git config --global user.name "Pink Panther" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
source "https://rubygems.org" | ||
gemspec | ||
|
||
# net-ssh 4.x does not work with Ruby 2.2 on Windows. Chef and ChefDK | ||
# are pinned to 3.2 so pinning that here. Only used by fauxhai in this project | ||
gem "net-ssh", "3.2.0" | ||
gemspec | ||
|
||
group :docs do | ||
gem "yard", "~> 0.9" | ||
gem "redcarpet", "~> 2.2.2" | ||
gem "github-markup", "~> 0.7" | ||
gem "yard" | ||
gem "redcarpet" | ||
gem "github-markup" | ||
end | ||
|
||
group :debug do | ||
gem "pry" | ||
gem "pry-byebug" | ||
gem "pry-stack_explorer" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters