Skip to content

Commit

Permalink
Limiting versions of gems in gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
AnotherRegularDude committed Dec 15, 2024
1 parent 6740cfe commit ce03d81
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ PATH
remote: .
specs:
resol (1.0.0)
dry-configurable
dry-container
dry-configurable (~> 1.2.0)
dry-container (~> 0.11)

GEM
remote: https://rubygems.org/
Expand Down
4 changes: 2 additions & 2 deletions resol.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ Gem::Specification.new do |spec|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.include?("spec") }
spec.require_paths = ["lib"]

spec.add_dependency "dry-configurable"
spec.add_dependency "dry-container"
spec.add_dependency "dry-configurable", "~>1.2.0"
spec.add_dependency "dry-container", "~>0.11"
end

0 comments on commit ce03d81

Please sign in to comment.