Skip to content

Commit

Permalink
Move development dependencies into Gemfile
Browse files Browse the repository at this point in the history
These should be specified in the Gemfile for development, rather than in
the gemspec.
  • Loading branch information
sds committed Mar 29, 2016
1 parent 3134c1f commit a797866
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
10 changes: 8 additions & 2 deletions Gemfile
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
4 changes: 0 additions & 4 deletions overcommit.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,4 @@ Gem::Specification.new do |s|

s.add_dependency 'childprocess', '~> 0.5.8'
s.add_dependency 'iniparse', '~> 1.4'

s.add_development_dependency 'rake', '~> 10.4'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'travis', '~> 1.7'
end

0 comments on commit a797866

Please sign in to comment.