Skip to content

Commit

Permalink
Appraise Rails 7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Maimer committed Aug 19, 2024
1 parent f2406bd commit f14e810
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ when '3.1.2', '3.2.1', '3.3.0'
gem 'rails', '~> 7.1.0'
end
end

appraise "ruby-#{RUBY_VERSION}_rails72" do
source 'https://rubygems.org' do
gem 'rails', '~> 7.2.0'
end
end
else
raise "Unsupported Ruby version #{RUBY_VERSION}"
end
8 changes: 4 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ source 'https://rubygems.org' # global source
source 'https://rubygems.pkg.github.com/appfolio' # global source

source 'https://rubygems.org' do
gem 'activerecord', '>= 6.1', '< 7.2'
gem 'activerecord', '>= 6.1', '< 7.3'
gem 'activerecord-import', '> 1', '< 2'
gem 'aruba', '>= 0.9', '< 1'
gem 'aws-sdk-s3', '>= 1.93', '< 2'
Expand All @@ -16,9 +16,9 @@ source 'https://rubygems.org' do
gem 'fog-local', '>= 0.7', '< 1'
gem 'generator_spec', '>= 0.9', '< 1'
gem 'launchy', '>= 2.5', '< 3'
gem 'mysql2', '>= 0.5.5', '< 1'
gem 'nokogiri', '>= 1.14', '< 2'
gem 'railties', '>= 6.1', '< 7.2'
gem 'mysql2', '>= 0.5.6', '< 1'
gem 'nokogiri', '>= 1.16', '< 2'
gem 'railties', '>= 6.1', '< 7.3'
gem 'rspec', '>= 3', '< 4'
gem 'shoulda', '>= 4', '< 5'
gem 'timecop', '>= 0.9', '< 1'
Expand Down
4 changes: 2 additions & 2 deletions paperclip.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = Gem::Requirement.new('< 3.4')
spec.metadata['allowed_push_host'] = 'https://rubygems.pkg.github.com/appfolio'

spec.add_dependency('activemodel', ['>= 6.1', '< 7.2'])
spec.add_dependency('activesupport', ['>= 6.1', '< 7.2'])
spec.add_dependency('activemodel', ['>= 6.1', '< 7.3'])
spec.add_dependency('activesupport', ['>= 6.1', '< 7.3'])
spec.add_dependency('terrapin', ['>= 0.6', '< 0.7'])
spec.add_dependency('marcel', ['>= 1.0.1', '< 2'])
spec.add_dependency('mime-types', ['>= 3.3', '< 4'])
Expand Down

0 comments on commit f14e810

Please sign in to comment.