Skip to content

Commit a797866

Browse files
committed
Move development dependencies into Gemfile
These should be specified in the Gemfile for development, rather than in the gemspec.
1 parent 3134c1f commit a797866

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

Gemfile

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
source 'https://rubygems.org'
22

3+
gemspec
4+
5+
# Development dependencies are listed below
6+
7+
gem 'rake', '>= 10', '< 12'
8+
gem 'rspec', '~> 3.0'
9+
gem 'travis', '~> 1.7'
10+
311
# Generate coverage information in Travis builds
412
gem 'coveralls'
513

614
# Pin RuboCop for Travis builds.
715
gem 'rubocop', '0.39.0'
8-
9-
gemspec

overcommit.gemspec

-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,4 @@ Gem::Specification.new do |s|
2828

2929
s.add_dependency 'childprocess', '~> 0.5.8'
3030
s.add_dependency 'iniparse', '~> 1.4'
31-
32-
s.add_development_dependency 'rake', '~> 10.4'
33-
s.add_development_dependency 'rspec', '~> 3.0'
34-
s.add_development_dependency 'travis', '~> 1.7'
3531
end

0 commit comments

Comments
 (0)