Skip to content

Commit

Permalink
Lax dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
MatheusRich committed Feb 21, 2025
1 parent 0659cd2 commit 4ce40eb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ PATH
remote: .
specs:
rails-diff (0.1.0)
diffy
rails (>= 8.0)
thor
diffy (~> 3.4)
rails (>= 7.0)
thor (~> 1.0)

GEM
remote: https://rubygems.org/
Expand Down
8 changes: 4 additions & 4 deletions rails-diff.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
spec.authors = ["Matheus Richard"]
spec.email = ["matheusrichardt@gmail.com"]

spec.summary = "Compare Rails-generated files with your repository"
spec.summary = "Compare Rails-generated files with the ones in your repository"
spec.description = "rails-diff helps you compare files generated by Rails (like Dockerfile, .gitignore, etc) with the ones in your repository, making it easier to keep track of changes and updates."
spec.homepage = "/~https://github.com/matheusrich/rails-diff"
spec.license = "MIT"
Expand All @@ -33,9 +33,9 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_dependency "rails", ">= 8.0"
spec.add_dependency "diffy"
spec.add_dependency "thor"
spec.add_dependency "rails", ">= 7.0"
spec.add_dependency "diffy", "~> 3.4"
spec.add_dependency "thor", "~> 1.0"

# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html
Expand Down

0 comments on commit 4ce40eb

Please sign in to comment.