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
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.5
3.1.6
7 changes: 7 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,10 @@ 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"
13 changes: 10 additions & 3 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 @@ -13,18 +13,21 @@
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
appraisal (2.4.0)
appraisal (2.5.0)
bundler
rake
thor (>= 0.14.0)
ast (2.4.2)
base64 (0.2.0)
bigdecimal (3.1.9)
coderay (1.1.3)
concurrent-ruby (1.1.10)
diff-lcs (1.4.4)
i18n (1.10.0)
concurrent-ruby (~> 1.0)
method_source (1.0.0)
minitest (5.15.0)
mutex_m (0.3.0)
parallel (1.20.1)
parser (3.0.2.0)
ast (~> 2.4.1)
Expand All @@ -33,7 +36,7 @@
coderay (~> 1.1)
method_source (~> 1.0)
rainbow (3.0.0)
rake (13.0.6)
rake (13.2.1)
rspec (3.10.0)
rspec-core (~> 3.10.0)
rspec-expectations (~> 3.10.0)
Expand All @@ -57,7 +60,7 @@
ruby-progressbar (~> 1.7)
unicode-display_width (~> 1.0, >= 1.0.1)
ruby-progressbar (1.11.0)
thor (1.1.0)
thor (1.3.2)
tzinfo (2.0.4)
concurrent-ruby (~> 1.0)
unicode-display_width (1.7.0)
Expand All @@ -68,7 +71,11 @@

DEPENDENCIES
appraisal
base64 (>= 0.2.0)
bigdecimal (>= 3.1)
concurrent-ruby (~> 1.0, < 1.3.5)
monotonic_tick_count!
mutex_m (>= 0.3.0)
pry
rake
rspec (~> 3.7)
Expand Down
4 changes: 4 additions & 0 deletions gemfiles/rails_5.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ 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", "~> 5.2"

gemspec path: "../"
4 changes: 4 additions & 0 deletions gemfiles/rails_6.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ 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", "~> 6.0"

gemspec path: "../"
4 changes: 4 additions & 0 deletions gemfiles/rails_7.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ 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", "~> 7.0"

gemspec path: "../"
Loading