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
12 changes: 2 additions & 10 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
# frozen_string_literal: true

appraise 'rails-5' do
gem 'activesupport', '~> 5.2'
end
require "appraisal/matrix"

appraise 'rails-6' do
gem 'activesupport', '~> 6.0'
end

appraise 'rails-7' do
gem 'activesupport', '~> 7.0'
end
appraisal_matrix(activesupport: "7.0")
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ source 'https://rubygems.org'
gemspec

gem 'appraisal'
gem 'appraisal-matrix'
gem 'pry'
gem 'rake'
gem 'rspec', '~> 3.7'
Expand Down
3 changes: 3 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
monotonic_tick_count (1.1.0)

Check failure on line 4 in Gemfile.lock

View check run for this annotation

Security Scanner as a Service / Bundle Audit

Gemfile.lock#L4

activesupport Warning Message: https://github.com/rails/rails/releases/tag/v7.0.4.1 CVE: CVE-2023-22796 Severity:

Check failure on line 4 in Gemfile.lock

View check run for this annotation

Security Scanner as a Service / Bundle Audit

Gemfile.lock#L4

activesupport Warning Message: https://discuss.rubyonrails.org/t/cve-2023-28120-possible-xss-security-vulnerability-in-safebuffer-bytesplice/82469 CVE: CVE-2023-28120 Severity: medium

Check failure on line 4 in Gemfile.lock

View check run for this annotation

Security Scanner as a Service / Bundle Audit

Gemfile.lock#L4

activesupport Warning Message: https://github.com/rails/rails/releases/tag/v7.0.7.1 CVE: CVE-2023-38037 Severity: medium
activesupport (>= 5.2)

GEM
Expand All @@ -17,6 +17,8 @@
bundler
rake
thor (>= 0.14.0)
appraisal-matrix (0.3.0)
appraisal (~> 2.2)
ast (2.4.2)
base64 (0.2.0)
bigdecimal (3.1.9)
Expand Down Expand Up @@ -71,6 +73,7 @@

DEPENDENCIES
appraisal
appraisal-matrix
base64 (>= 0.2.0)
bigdecimal (>= 3.1)
concurrent-ruby (~> 1.0, < 1.3.5)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
source "https://rubygems.org"

gem "appraisal"
gem "appraisal-matrix"
gem "pry"
gem "rake"
gem "rspec", "~> 3.7"
Expand All @@ -13,6 +14,6 @@ gem "concurrent-ruby", "~> 1.0", "< 1.3.5"
gem "base64", ">= 0.2.0"
gem "bigdecimal", ">= 3.1"
gem "mutex_m", ">= 0.3.0"
gem "activesupport", "~> 5.2"
gem "activesupport", "~> 7.0.0"

gemspec path: "../"
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
source "https://rubygems.org"

gem "appraisal"
gem "appraisal-matrix"
gem "pry"
gem "rake"
gem "rspec", "~> 3.7"
Expand All @@ -13,6 +14,6 @@ gem "concurrent-ruby", "~> 1.0", "< 1.3.5"
gem "base64", ">= 0.2.0"
gem "bigdecimal", ">= 3.1"
gem "mutex_m", ">= 0.3.0"
gem "activesupport", "~> 6.0"
gem "activesupport", "~> 7.1.0"

gemspec path: "../"
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
source "https://rubygems.org"

gem "appraisal"
gem "appraisal-matrix"
gem "pry"
gem "rake"
gem "rspec", "~> 3.7"
Expand All @@ -13,6 +14,6 @@ gem "concurrent-ruby", "~> 1.0", "< 1.3.5"
gem "base64", ">= 0.2.0"
gem "bigdecimal", ">= 3.1"
gem "mutex_m", ">= 0.3.0"
gem "activesupport", "~> 7.0"
gem "activesupport", "~> 7.2.0"

gemspec path: "../"
19 changes: 19 additions & 0 deletions gemfiles/activesupport_8_0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "appraisal"
gem "appraisal-matrix"
gem "pry"
gem "rake"
gem "rspec", "~> 3.7"
gem "rspec_junit_formatter", "~> 0.4"
gem "rspec-mocks"
gem "rubocop", "0.54.0"
gem "concurrent-ruby", "~> 1.0", "< 1.3.5"
gem "base64", ">= 0.2.0"
gem "bigdecimal", ">= 3.1"
gem "mutex_m", ">= 0.3.0"
gem "activesupport", "~> 8.0.0"

gemspec path: "../"
Loading