Skip to content

Commit

Permalink
Improving gemspec dependencies definition
Browse files Browse the repository at this point in the history
  • Loading branch information
g3ortega committed Sep 7, 2021
1 parent 19a21c1 commit e5cf236
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions price_calculator.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.add_dependency 'text-table'
spec.add_dependency 'thor'
spec.add_dependency 'dry-types'
spec.add_dependency 'dry-struct'
spec.add_dependency 'text-table', '~> 1.2.4'
spec.add_dependency 'thor', '~> 1.1'
spec.add_dependency 'dry-types', '~> 1.5'
spec.add_dependency 'dry-struct', '~> 1.4'

spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'pry'
Expand Down

0 comments on commit e5cf236

Please sign in to comment.