Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

appraise "rails-5.1" do
gem "activesupport", "~> 5.1.0"
gem "rails", "~> 5.1.0"

# These gems were loaded from the standard library, but are not part of the default gems starting from Ruby 3.4.0.
gem "base64", ">= 0.2"
Expand All @@ -10,7 +10,7 @@ appraise "rails-5.1" do
end

appraise "rails-5.2" do
gem "activesupport", "~> 5.2.0"
gem "rails", "~> 5.2.0"

# These gems were loaded from the standard library, but are not part of the default gems starting from Ruby 3.4.0.
gem "base64", ">= 0.2"
Expand All @@ -19,7 +19,7 @@ appraise "rails-5.2" do
end

appraise "rails-6.0" do
gem "activesupport", "~> 6.0.0"
gem "rails", "~> 6.0.0"
gem "concurrent-ruby", "1.3.4"

# These gems were loaded from the standard library, but are not part of the default gems starting from Ruby 3.4.0.
Expand All @@ -29,7 +29,7 @@ appraise "rails-6.0" do
end

appraise "rails-6.1" do
gem "activesupport", "~> 6.1.0"
gem "rails", "~> 6.1.0"
gem "concurrent-ruby", "1.3.4"

# These gems were loaded from the standard library, but are not part of the default gems starting from Ruby 3.4.0.
Expand All @@ -39,22 +39,22 @@ appraise "rails-6.1" do
end

appraise "rails-7.0" do
gem "activesupport", "~> 7.0.0"
gem "rails", "~> 7.0.0"
gem "concurrent-ruby", "1.3.4"
end

appraise "rails-7.1" do
gem "activesupport", "~> 7.1.0"
gem "rails", "~> 7.1.0"
end

appraise "rails-7.2" do
gem "activesupport", "~> 7.2.0"
gem "rails", "~> 7.2.0"
end

appraise "rails-8.0" do
gem "activesupport", "~> 8.0.0"
gem "rails", "~> 8.0.0"
end

appraise "rails-8.1" do
gem "activesupport", "~> 8.1.0"
gem "rails", "~> 8.1.0"
end
1 change: 0 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ PATH
remote: .
specs:
stroma (0.4.0)
activesupport (>= 5.1)
zeitwerk (>= 2.6)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_5.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

source "https://rubygems.org"

gem "activesupport", "~> 5.1.0"
gem "base64", ">= 0.2"
gem "bigdecimal", ">= 3.1"
gem "mutex_m", ">= 0.3"
gem "rails", "~> 5.1.0"

gemspec path: "../"
2 changes: 1 addition & 1 deletion gemfiles/rails_5.2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

source "https://rubygems.org"

gem "activesupport", "~> 5.2.0"
gem "base64", ">= 0.2"
gem "bigdecimal", ">= 3.1"
gem "mutex_m", ">= 0.3"
gem "rails", "~> 5.2.0"

gemspec path: "../"
2 changes: 1 addition & 1 deletion gemfiles/rails_6.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

source "https://rubygems.org"

gem "activesupport", "~> 6.0.0"
gem "base64", ">= 0.2"
gem "bigdecimal", ">= 3.1"
gem "concurrent-ruby", "1.3.4"
gem "mutex_m", ">= 0.3"
gem "rails", "~> 6.0.0"

gemspec path: "../"
2 changes: 1 addition & 1 deletion gemfiles/rails_6.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

source "https://rubygems.org"

gem "activesupport", "~> 6.1.0"
gem "base64", ">= 0.2"
gem "bigdecimal", ">= 3.1"
gem "concurrent-ruby", "1.3.4"
gem "mutex_m", ">= 0.3"
gem "rails", "~> 6.1.0"

gemspec path: "../"
2 changes: 1 addition & 1 deletion gemfiles/rails_7.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

source "https://rubygems.org"

gem "activesupport", "~> 7.0.0"
gem "concurrent-ruby", "1.3.4"
gem "rails", "~> 7.0.0"

gemspec path: "../"
2 changes: 1 addition & 1 deletion gemfiles/rails_7.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

source "https://rubygems.org"

gem "activesupport", "~> 7.1.0"
gem "rails", "~> 7.1.0"

gemspec path: "../"
2 changes: 1 addition & 1 deletion gemfiles/rails_7.2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

source "https://rubygems.org"

gem "activesupport", "~> 7.2.0"
gem "rails", "~> 7.2.0"

gemspec path: "../"
2 changes: 1 addition & 1 deletion gemfiles/rails_8.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

source "https://rubygems.org"

gem "activesupport", "~> 8.0.0"
gem "rails", "~> 8.0.0"

gemspec path: "../"
2 changes: 1 addition & 1 deletion gemfiles/rails_8.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

source "https://rubygems.org"

gem "activesupport", "~> 8.1.0"
gem "rails", "~> 8.1.0"

gemspec path: "../"
2 changes: 0 additions & 2 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

Dir[File.join(__dir__, "support", "**", "*.rb")].each { |file| require file }

# I18n.load_path += Dir["#{File.expand_path('config/locales')}/*.yml"]

RSpec.configure do |config|
# Enable flags like --only-failures and --next-failure
config.example_status_persistence_file_path = ".rspec_status"
Expand Down
3 changes: 0 additions & 3 deletions stroma.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,9 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = Gem::Requirement.new(">= 3.2")

spec.add_dependency "activesupport", ">= 5.1"
# spec.add_dependency "i18n", ">= 1.14"
spec.add_dependency "zeitwerk", ">= 2.6"

spec.add_development_dependency "appraisal", ">= 2.5"
# spec.add_development_dependency "async", ">= 2.23"
spec.add_development_dependency "rake", ">= 13.2"
spec.add_development_dependency "rbs", ">= 3.8"
spec.add_development_dependency "rspec", ">= 3.13"
Expand Down