mirror of
https://github.com/samsonjs/grape-active_model_serializers.git
synced 2026-04-27 14:57:43 +00:00
Moved development gems out of .gemspec.
This commit is contained in:
parent
7670d9aed7
commit
791c1b0f5e
3 changed files with 10 additions and 8 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
# This configuration was generated by
|
# This configuration was generated by
|
||||||
# `rubocop --auto-gen-config`
|
# `rubocop --auto-gen-config`
|
||||||
# on 2018-03-14 14:57:44 -0400 using RuboCop version 0.53.0.
|
# on 2018-03-14 14:59:23 -0400 using RuboCop version 0.53.0.
|
||||||
# The point is for the user to remove these configuration records
|
# The point is for the user to remove these configuration records
|
||||||
# one by one as the offenses are removed from the code base.
|
# one by one as the offenses are removed from the code base.
|
||||||
# Note that changes in the inspected code, or installation of new
|
# Note that changes in the inspected code, or installation of new
|
||||||
|
|
|
||||||
9
Gemfile
9
Gemfile
|
|
@ -10,7 +10,16 @@ else
|
||||||
end
|
end
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
|
gem 'rack-test'
|
||||||
gem 'ruby-grape-danger', '~> 0.1.0', require: false
|
gem 'ruby-grape-danger', '~> 0.1.0', require: false
|
||||||
gem 'sequel', '~> 4.37', require: false
|
gem 'sequel', '~> 4.37', require: false
|
||||||
gem 'sqlite3'
|
gem 'sqlite3'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
group :development, :test do
|
||||||
|
gem 'guard-rspec'
|
||||||
|
gem 'listen', '~> 3.0.7'
|
||||||
|
gem 'rake'
|
||||||
|
gem 'rspec'
|
||||||
|
gem 'rubocop', '0.53.0'
|
||||||
|
end
|
||||||
|
|
|
||||||
|
|
@ -18,11 +18,4 @@ Gem::Specification.new do |gem|
|
||||||
|
|
||||||
gem.add_dependency 'grape', '>= 0.8.0'
|
gem.add_dependency 'grape', '>= 0.8.0'
|
||||||
gem.add_dependency 'active_model_serializers', '>= 0.10.0'
|
gem.add_dependency 'active_model_serializers', '>= 0.10.0'
|
||||||
|
|
||||||
gem.add_development_dependency 'listen', '~> 3.0.7'
|
|
||||||
gem.add_development_dependency 'rspec'
|
|
||||||
gem.add_development_dependency 'rack-test'
|
|
||||||
gem.add_development_dependency 'rake'
|
|
||||||
gem.add_development_dependency 'guard-rspec'
|
|
||||||
gem.add_development_dependency 'rubocop', '0.53.0'
|
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue