Move dev dependencies to Gemfile

This commit is contained in:
Nicolas Rodriguez 2026-03-02 03:27:11 +01:00
parent f9d417f2d6
commit 3b2ebd5669
2 changed files with 7 additions and 7 deletions

View file

@ -2,3 +2,10 @@ source 'https://rubygems.org'
# Specify your gem's dependencies in grape_logging.gemspec
gemspec
gem 'rake', '~> 13.3'
gem 'rspec', '~> 3.5'
# This is pinned to an exact version otherwise we can't know which rules
# are in play at any given time in different environments.
gem 'rubocop', '1.77.0'

View file

@ -22,11 +22,4 @@ Gem::Specification.new do |spec|
spec.add_dependency 'grape', '>= 2.4.0'
spec.add_dependency 'rack'
spec.add_development_dependency 'rake', '~> 13.3'
spec.add_development_dependency 'rspec', '~> 3.5'
# This is pinned to an exact version otherwise we can't know which rules
# are in play at any given time in different environments.
spec.add_development_dependency 'rubocop', '1.77.0'
end