Skip to content

Commit

Permalink
move to packaged rails 7.2 in Appraisals
Browse files Browse the repository at this point in the history
  • Loading branch information
modosc committed Sep 22, 2024
1 parent c667602 commit 2acb725
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ appraise 'rails-7.1' do
end

appraise 'rails-7.2' do
gem 'rails', github: 'rails/rails', branch: '7-2-stable'
gem 'rails', '~> 7.2.0'
end

appraise 'rails-8.0' do
Expand Down
6 changes: 3 additions & 3 deletions gemfiles/rails_7.1.gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file was generated by Appraisal

source 'https://rubygems.org'
source "https://rubygems.org"

gem 'rails', '~> 7.1.0'
gem "rails", "~> 7.1.0"

gemspec path: '../'
gemspec path: "../"
8 changes: 3 additions & 5 deletions gemfiles/rails_7.2.gemfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
# frozen_string_literal: true

# This file was generated by Appraisal

source 'https://rubygems.org'
source "https://rubygems.org"

gem 'rails', github: 'rails/rails', branch: '7-2-stable'
gem "rails", "~> 7.2.0"

gemspec path: '../'
gemspec path: "../"
8 changes: 3 additions & 5 deletions gemfiles/rails_8.0.gemfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
# frozen_string_literal: true

# This file was generated by Appraisal

source 'https://rubygems.org'
source "https://rubygems.org"

gem 'rails', github: 'rails/rails'
gem "rails", github: "rails/rails"

gemspec path: '../'
gemspec path: "../"

0 comments on commit 2acb725

Please sign in to comment.