diff --git a/Appraisals b/Appraisals index 6497b4b..c2842e3 100644 --- a/Appraisals +++ b/Appraisals @@ -14,10 +14,6 @@ end appraise "rails-7_2" do gem "rails", "~> 7.2.x" - - install_if "-> { RUBY_VERSION >= \"3.1\" && RUBY_VERSION < \"3.2\" }" do - gem "i18n", "!= 1.15.0" - end end appraise "rails-7_1" do @@ -29,10 +25,6 @@ appraise "rails-7_1" do gem "rack", "~> 2.2" gem "rspec-rails", "~> 7.1" gem "sqlite3", "~> 1.7" - - install_if "-> { RUBY_VERSION >= \"3.1\" && RUBY_VERSION < \"3.2\" }" do - gem "i18n", "!= 1.15.0" - end end appraise "devise-5_0" do @@ -47,8 +39,4 @@ appraise "devise-5_0" do end gem "rspec-rails", ">= 7.1" gem "sqlite3", ">= 1.6", "!= 1.7.0", "!= 1.7.1", "!= 1.7.2", "!= 1.7.3" - - install_if "-> { RUBY_VERSION >= \"3.1\" && RUBY_VERSION < \"3.2\" }" do - gem "i18n", "!= 1.15.0" - end end diff --git a/gemfiles/devise_5_0.gemfile b/gemfiles/devise_5_0.gemfile index 5d466e1..aa7ff5e 100644 --- a/gemfiles/devise_5_0.gemfile +++ b/gemfiles/devise_5_0.gemfile @@ -23,8 +23,4 @@ install_if -> { RUBY_VERSION < "3.0" } do gem "rack", "~> 2.2" end -install_if -> { RUBY_VERSION >= "3.1" && RUBY_VERSION < "3.2" } do - gem "i18n", "!= 1.15.0" -end - gemspec path: "../" diff --git a/gemfiles/rails_7_1.gemfile b/gemfiles/rails_7_1.gemfile index 38c0bd2..3a38982 100644 --- a/gemfiles/rails_7_1.gemfile +++ b/gemfiles/rails_7_1.gemfile @@ -20,8 +20,4 @@ gem "selenium-webdriver" gem "sqlite3", "~> 1.7" gem "rack", "~> 2.2" -install_if -> { RUBY_VERSION >= "3.1" && RUBY_VERSION < "3.2" } do - gem "i18n", "!= 1.15.0" -end - gemspec path: "../" diff --git a/gemfiles/rails_7_2.gemfile b/gemfiles/rails_7_2.gemfile index c164f7a..408388c 100644 --- a/gemfiles/rails_7_2.gemfile +++ b/gemfiles/rails_7_2.gemfile @@ -19,8 +19,4 @@ gem "rubocop-rspec", "~> 3.6" gem "selenium-webdriver" gem "sqlite3", "~> 2.7" -install_if -> { RUBY_VERSION >= "3.1" && RUBY_VERSION < "3.2" } do - gem "i18n", "!= 1.15.0" -end - gemspec path: "../"