-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move development dependencies into Gemfile
These should be specified in the Gemfile for development, rather than in the gemspec.
- Loading branch information
Showing
2 changed files
with
8 additions
and
6 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,9 +1,15 @@ | ||
source 'https://rubygems.org' | ||
|
||
gemspec | ||
|
||
# Development dependencies are listed below | ||
|
||
gem 'rake', '>= 10', '< 12' | ||
gem 'rspec', '~> 3.0' | ||
gem 'travis', '~> 1.7' | ||
|
||
# Generate coverage information in Travis builds | ||
gem 'coveralls' | ||
|
||
# Pin RuboCop for Travis builds. | ||
gem 'rubocop', '0.39.0' | ||
|
||
gemspec |
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