Skip to content

Commit

Permalink
Move development dependencies from the gemspec file to Gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
andrykonchin committed Dec 31, 2023
1 parent 09ed83f commit 197ca8f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
7 changes: 7 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ source 'https://rubygems.org'
# Specify your gem's dependencies in dynamoid.gemspec
gemspec

gem 'appraisal'
gem 'bundler'
gem 'pry', '~> 0.14'
gem 'rake', '~> 13.0'
gem 'rspec', '~> 3.12'
gem 'yard'

# Only add to the set of gems from the gemspec when running on local.
# All CI jobs must use a discrete Gemfile located at gemfiles/*.gemfile. They will not use this Gemfile
if ENV['CI'].nil?
Expand Down
7 changes: 0 additions & 7 deletions dynamoid.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,4 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency 'activemodel', '>=4'
spec.add_runtime_dependency 'aws-sdk-dynamodb', '~> 1.0'
spec.add_runtime_dependency 'concurrent-ruby', '>= 1.0'

spec.add_development_dependency 'appraisal'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'pry', '~> 0.14'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.12'
spec.add_development_dependency 'yard'
end

0 comments on commit 197ca8f

Please sign in to comment.