Skip to content

Commit

Permalink
Fix lock files and rails versions
Browse files Browse the repository at this point in the history
  • Loading branch information
xjunior committed Jan 17, 2024
1 parent f15ebf9 commit a52889a
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions packages/lumberaxe/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ PATH
remote: .
specs:
lumberaxe (0.1.4)
activesupport (= 7.1.3)
activesupport (>= 6.0.6.1, < 7.2)
lograge (= 0.10.0)

GEM
Expand Down Expand Up @@ -318,7 +318,7 @@ DEPENDENCIES
parser (>= 2.5, != 2.5.1.1)
pry (>= 0.14.2)
pry-byebug (= 3.10.1)
rails (>= 6.0.6.1, <= 7.1.3)
rails (>= 6.0.6.1, < 7.2)
rainbow (= 2.2.2)
rake (~> 13.0)
rspec (~> 3.0)
Expand Down
2 changes: 1 addition & 1 deletion packages/lumberaxe/gemfiles/rails_6_0.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ PATH
remote: ..
specs:
lumberaxe (0.1.4)
activesupport (>= 6.0.6.1, < 7.1)
activesupport (>= 6.0.6.1, < 7.2)
lograge (= 0.10.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion packages/lumberaxe/gemfiles/rails_6_1.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ PATH
remote: ..
specs:
lumberaxe (0.1.4)
activesupport (>= 6.0.6.1, < 7.1)
activesupport (>= 6.0.6.1, < 7.2)
lograge (= 0.10.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion packages/lumberaxe/gemfiles/rails_7_0.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ PATH
remote: ..
specs:
lumberaxe (0.1.4)
activesupport (>= 6.0.6.1, < 7.1)
activesupport (>= 6.0.6.1, < 7.2)
lograge (= 0.10.0)

GEM
Expand Down
1 change: 1 addition & 0 deletions packages/lumberaxe/gemfiles/rails_7_1.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,7 @@ GEM

PLATFORMS
arm64-darwin-22
x86_64-linux

DEPENDENCIES
appraisal (~> 2.4.1)
Expand Down
4 changes: 2 additions & 2 deletions packages/lumberaxe/lumberaxe.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_dependency "activesupport", ">= 6.0.6.1", "<= 7.1"
spec.add_dependency "activesupport", ">= 6.0.6.1", "< 7.2"
spec.add_dependency "lograge", "0.10.0"

spec.add_development_dependency "appraisal", "~> 2.4.1"
Expand All @@ -40,7 +40,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "parser", ">= 2.5", "!= 2.5.1.1"
spec.add_development_dependency "pry", ">= 0.14.2"
spec.add_development_dependency "pry-byebug", "3.10.1"
spec.add_development_dependency "rails", ">= 6.0.6.1", "<= 7.1"
spec.add_development_dependency "rails", ">= 6.0.6.1", "< 7.2"
spec.add_development_dependency "rainbow", "2.2.2"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.0"
Expand Down

0 comments on commit a52889a

Please sign in to comment.