Skip to content

Commit

Permalink
fix: fix dependency constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
adamcooke committed Nov 2, 2023
1 parent 6dfdea3 commit 0268de8
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 542 deletions.
6 changes: 3 additions & 3 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# frozen_string_literal: true

appraise 'rails-6.1' do
gem 'rails', '6.1.7.6'
gem 'rails', '~> 6.1.0'
end

appraise 'rails-7.0' do
gem 'rails', '7.0.8'
gem 'rails', '~> 7.0.0'
end

appraise 'rails-7.1' do
gem 'rails', '7.1.1'
gem 'rails', '~> 7.1.0'
end
2 changes: 1 addition & 1 deletion authie.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ Gem::Specification.new do |s|
s.authors = ['Adam Cooke']
s.email = ['me@adamcooke.io']

s.add_dependency 'activerecord', '>= 5.0', '< 8.0'
s.add_dependency 'activerecord', '>= 6.1', '< 8.0'
end
# rubocop:enable Gemspec/RequireMFA
2 changes: 1 addition & 1 deletion gemfiles/rails_6.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
source "https://rubygems.org"

gem "appraisal", "2.4.1"
gem "rails", "6.1.7.6"
gem "rails", "~> 6.1.0"
gem "rspec"
gem "rspec-core"
gem "rspec-expectations"
Expand Down
268 changes: 0 additions & 268 deletions gemfiles/rails_6.1.gemfile.lock

This file was deleted.

2 changes: 1 addition & 1 deletion gemfiles/rails_7.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
source "https://rubygems.org"

gem "appraisal", "2.4.1"
gem "rails", "7.0.8"
gem "rails", "~> 7.0.0"
gem "rspec"
gem "rspec-core"
gem "rspec-expectations"
Expand Down
Loading

0 comments on commit 0268de8

Please sign in to comment.