diff --git a/packages/api_chai/Gemfile b/packages/api_chai/Gemfile index 8f5bba95..9b0b9b37 100644 --- a/packages/api_chai/Gemfile +++ b/packages/api_chai/Gemfile @@ -5,8 +5,8 @@ source "https://rubygems.org" # Specify your gem's dependencies in api_chai.gemspec gemspec +gem "activesupport", "< 8.0.0" gem "rake", "~> 13.0" - gem "rspec", "~> 3.0" - gem "rubocop", "~> 1.21" +gem "securerandom", "< 0.4.0" diff --git a/packages/api_chai/Gemfile.lock b/packages/api_chai/Gemfile.lock index 3d07f326..5d15a401 100644 --- a/packages/api_chai/Gemfile.lock +++ b/packages/api_chai/Gemfile.lock @@ -6,7 +6,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (8.0.0) + activesupport (7.2.2) base64 benchmark (>= 0.3) bigdecimal @@ -18,7 +18,6 @@ GEM minitest (>= 5.1) securerandom (>= 0.3) tzinfo (~> 2.0, >= 2.0.5) - uri (>= 0.13.1) appraisal (2.5.0) bundler rake @@ -101,7 +100,7 @@ GEM rubocop (~> 1.61) ruby-progressbar (1.13.0) rubyzip (2.3.2) - securerandom (0.4.0) + securerandom (0.3.2) thor (1.3.2) tomlrb (2.0.3) tzinfo (2.0.6) @@ -109,7 +108,6 @@ GEM unicode-display_width (3.1.2) unicode-emoji (~> 4.0, >= 4.0.4) unicode-emoji (4.0.4) - uri (1.0.2) with_env (1.1.0) xml-simple (1.1.9) rexml @@ -121,6 +119,7 @@ PLATFORMS x86_64-linux DEPENDENCIES + activesupport (< 8.0.0) api_chai! appraisal (~> 2.5.0) license_finder (~> 7.0) @@ -128,6 +127,7 @@ DEPENDENCIES rspec (~> 3.0) rubocop (~> 1.21) rubocop-powerhome (= 0.5.0) + securerandom (< 0.4.0) BUNDLED WITH 2.4.22 diff --git a/packages/api_chai/api_chai.gemspec b/packages/api_chai/api_chai.gemspec index a21e608f..07f77863 100644 --- a/packages/api_chai/api_chai.gemspec +++ b/packages/api_chai/api_chai.gemspec @@ -32,8 +32,6 @@ Gem::Specification.new do |spec| spec.require_paths = ["lib"] spec.add_development_dependency "appraisal", "~> 2.5.0" - spec.add_development_dependency "license_finder", "~> 7.0" - spec.add_development_dependency "rubocop-powerhome", "0.5.0" end diff --git a/packages/api_chai/gemfiles/rails_6_0.gemfile b/packages/api_chai/gemfiles/rails_6_0.gemfile index f6b7e6a7..b1dc0880 100644 --- a/packages/api_chai/gemfiles/rails_6_0.gemfile +++ b/packages/api_chai/gemfiles/rails_6_0.gemfile @@ -4,9 +4,11 @@ source "https://rubygems.org" +gem "activesupport", "< 8.0.0" gem "rails", "6.0.6.1" gem "rake", "~> 13.0" gem "rspec", "~> 3.0" gem "rubocop", "~> 1.21" +gem "securerandom", "< 0.4.0" gemspec path: "../" diff --git a/packages/api_chai/gemfiles/rails_6_0.gemfile.lock b/packages/api_chai/gemfiles/rails_6_0.gemfile.lock index 8548b2ae..96a5de92 100644 --- a/packages/api_chai/gemfiles/rails_6_0.gemfile.lock +++ b/packages/api_chai/gemfiles/rails_6_0.gemfile.lock @@ -198,6 +198,7 @@ GEM rubocop (~> 1.61) ruby-progressbar (1.13.0) rubyzip (2.3.2) + securerandom (0.3.2) sprockets (4.2.1) concurrent-ruby (~> 1.0) rack (>= 2.2.4, < 4) @@ -229,6 +230,7 @@ PLATFORMS x86_64-linux DEPENDENCIES + activesupport (< 8.0.0) api_chai! appraisal (~> 2.5.0) license_finder (~> 7.0) @@ -237,6 +239,7 @@ DEPENDENCIES rspec (~> 3.0) rubocop (~> 1.21) rubocop-powerhome (= 0.5.0) + securerandom (< 0.4.0) BUNDLED WITH 2.4.22 diff --git a/packages/api_chai/gemfiles/rails_6_1.gemfile b/packages/api_chai/gemfiles/rails_6_1.gemfile index b857b27b..d2f79d28 100644 --- a/packages/api_chai/gemfiles/rails_6_1.gemfile +++ b/packages/api_chai/gemfiles/rails_6_1.gemfile @@ -4,9 +4,11 @@ source "https://rubygems.org" +gem "activesupport", "< 8.0.0" gem "rails", "6.1.7.7" gem "rake", "~> 13.0" gem "rspec", "~> 3.0" gem "rubocop", "~> 1.21" +gem "securerandom", "< 0.4.0" gemspec path: "../" diff --git a/packages/api_chai/gemfiles/rails_6_1.gemfile.lock b/packages/api_chai/gemfiles/rails_6_1.gemfile.lock index 324e7b32..22adb84c 100644 --- a/packages/api_chai/gemfiles/rails_6_1.gemfile.lock +++ b/packages/api_chai/gemfiles/rails_6_1.gemfile.lock @@ -202,6 +202,7 @@ GEM rubocop (~> 1.61) ruby-progressbar (1.13.0) rubyzip (2.3.2) + securerandom (0.3.2) sprockets (4.2.1) concurrent-ruby (~> 1.0) rack (>= 2.2.4, < 4) @@ -232,6 +233,7 @@ PLATFORMS x86_64-linux DEPENDENCIES + activesupport (< 8.0.0) api_chai! appraisal (~> 2.5.0) license_finder (~> 7.0) @@ -240,6 +242,7 @@ DEPENDENCIES rspec (~> 3.0) rubocop (~> 1.21) rubocop-powerhome (= 0.5.0) + securerandom (< 0.4.0) BUNDLED WITH 2.4.22 diff --git a/packages/api_chai/gemfiles/rails_7_0.gemfile b/packages/api_chai/gemfiles/rails_7_0.gemfile index eb04ac68..7cf0d024 100644 --- a/packages/api_chai/gemfiles/rails_7_0.gemfile +++ b/packages/api_chai/gemfiles/rails_7_0.gemfile @@ -4,9 +4,11 @@ source "https://rubygems.org" +gem "activesupport", "< 8.0.0" gem "rails", "7.0.8.1" gem "rake", "~> 13.0" gem "rspec", "~> 3.0" gem "rubocop", "~> 1.21" +gem "securerandom", "< 0.4.0" gemspec path: "../" diff --git a/packages/api_chai/gemfiles/rails_7_0.gemfile.lock b/packages/api_chai/gemfiles/rails_7_0.gemfile.lock index 08acc9de..494e6323 100644 --- a/packages/api_chai/gemfiles/rails_7_0.gemfile.lock +++ b/packages/api_chai/gemfiles/rails_7_0.gemfile.lock @@ -208,6 +208,7 @@ GEM rubocop (~> 1.61) ruby-progressbar (1.13.0) rubyzip (2.3.2) + securerandom (0.3.2) thor (1.3.2) timeout (0.4.2) tomlrb (2.0.3) @@ -231,6 +232,7 @@ PLATFORMS x86_64-linux DEPENDENCIES + activesupport (< 8.0.0) api_chai! appraisal (~> 2.5.0) license_finder (~> 7.0) @@ -239,6 +241,7 @@ DEPENDENCIES rspec (~> 3.0) rubocop (~> 1.21) rubocop-powerhome (= 0.5.0) + securerandom (< 0.4.0) BUNDLED WITH 2.4.22 diff --git a/packages/audit_tracker/gemfiles/rails_6_0.gemfile b/packages/audit_tracker/gemfiles/rails_6_0.gemfile index e1db08f7..911f849c 100644 --- a/packages/audit_tracker/gemfiles/rails_6_0.gemfile +++ b/packages/audit_tracker/gemfiles/rails_6_0.gemfile @@ -4,12 +4,12 @@ source "https://rubygems.org" gem "byebug" gem "license_finder", ">= 7.0" +gem "net-imap", "< 0.5.0" gem "rake", ">= 13.0" gem "rspec", ">= 3.0" gem "rubocop", ">= 1.32" gem "rubocop-powerhome", path: "../../rubocop-powerhome" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "6.0.6.1" gemspec path: "../" diff --git a/packages/audit_tracker/gemfiles/rails_6_1.gemfile b/packages/audit_tracker/gemfiles/rails_6_1.gemfile index 81dbd2db..892b8e06 100644 --- a/packages/audit_tracker/gemfiles/rails_6_1.gemfile +++ b/packages/audit_tracker/gemfiles/rails_6_1.gemfile @@ -4,12 +4,12 @@ source "https://rubygems.org" gem "byebug" gem "license_finder", ">= 7.0" +gem "net-imap", "< 0.5.0" gem "rake", ">= 13.0" gem "rspec", ">= 3.0" gem "rubocop", ">= 1.32" gem "rubocop-powerhome", path: "../../rubocop-powerhome" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "6.1.7.7" gemspec path: "../" diff --git a/packages/audit_tracker/gemfiles/rails_7_0.gemfile b/packages/audit_tracker/gemfiles/rails_7_0.gemfile index 664e0227..29ced874 100644 --- a/packages/audit_tracker/gemfiles/rails_7_0.gemfile +++ b/packages/audit_tracker/gemfiles/rails_7_0.gemfile @@ -4,12 +4,12 @@ source "https://rubygems.org" gem "byebug" gem "license_finder", ">= 7.0" +gem "net-imap", "< 0.5.0" gem "rake", ">= 13.0" gem "rspec", ">= 3.0" gem "rubocop", ">= 1.32" gem "rubocop-powerhome", path: "../../rubocop-powerhome" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "7.0.8.1" gemspec path: "../" diff --git a/packages/camel_trail/gemfiles/rails_6_0.gemfile b/packages/camel_trail/gemfiles/rails_6_0.gemfile index af6393fa..e9a9b18e 100644 --- a/packages/camel_trail/gemfiles/rails_6_0.gemfile +++ b/packages/camel_trail/gemfiles/rails_6_0.gemfile @@ -2,9 +2,9 @@ source "https://rubygems.org" +gem "net-imap", "< 0.5.0" gem "rubocop-powerhome", path: "../../rubocop-powerhome" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "6.0.6.1" gemspec path: "../" diff --git a/packages/camel_trail/gemfiles/rails_6_1.gemfile b/packages/camel_trail/gemfiles/rails_6_1.gemfile index 8c598d78..63a2d7ef 100644 --- a/packages/camel_trail/gemfiles/rails_6_1.gemfile +++ b/packages/camel_trail/gemfiles/rails_6_1.gemfile @@ -2,9 +2,9 @@ source "https://rubygems.org" +gem "net-imap", "< 0.5.0" gem "rubocop-powerhome", path: "../../rubocop-powerhome" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "6.1.7.7" gemspec path: "../" diff --git a/packages/camel_trail/gemfiles/rails_7_1.gemfile b/packages/camel_trail/gemfiles/rails_7_1.gemfile index fafa4a2d..1cf0aee9 100644 --- a/packages/camel_trail/gemfiles/rails_7_1.gemfile +++ b/packages/camel_trail/gemfiles/rails_7_1.gemfile @@ -2,9 +2,9 @@ source "https://rubygems.org" +gem "net-imap", "< 0.5.0" gem "rubocop-powerhome", path: "../../rubocop-powerhome" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "7.1.3.2" gemspec path: "../" diff --git a/packages/consent/gemfiles/rails_6_0.gemfile b/packages/consent/gemfiles/rails_6_0.gemfile index af6393fa..e9a9b18e 100644 --- a/packages/consent/gemfiles/rails_6_0.gemfile +++ b/packages/consent/gemfiles/rails_6_0.gemfile @@ -2,9 +2,9 @@ source "https://rubygems.org" +gem "net-imap", "< 0.5.0" gem "rubocop-powerhome", path: "../../rubocop-powerhome" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "6.0.6.1" gemspec path: "../" diff --git a/packages/consent/gemfiles/rails_6_1.gemfile b/packages/consent/gemfiles/rails_6_1.gemfile index 8c598d78..63a2d7ef 100644 --- a/packages/consent/gemfiles/rails_6_1.gemfile +++ b/packages/consent/gemfiles/rails_6_1.gemfile @@ -2,9 +2,9 @@ source "https://rubygems.org" +gem "net-imap", "< 0.5.0" gem "rubocop-powerhome", path: "../../rubocop-powerhome" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "6.1.7.7" gemspec path: "../" diff --git a/packages/consent/gemfiles/rails_7_0.gemfile b/packages/consent/gemfiles/rails_7_0.gemfile index 67fc0edd..297d30fe 100644 --- a/packages/consent/gemfiles/rails_7_0.gemfile +++ b/packages/consent/gemfiles/rails_7_0.gemfile @@ -2,9 +2,9 @@ source "https://rubygems.org" +gem "net-imap", "< 0.5.0" gem "rubocop-powerhome", path: "../../rubocop-powerhome" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "7.0.8.1" gemspec path: "../" diff --git a/packages/cygnet/Gemfile b/packages/cygnet/Gemfile index b24b97bb..8590911c 100644 --- a/packages/cygnet/Gemfile +++ b/packages/cygnet/Gemfile @@ -4,4 +4,6 @@ source "https://rubygems.org" gemspec +gem "net-imap", "< 0.5.0" gem "rubocop-powerhome", path: "../rubocop-powerhome" +gem "zeitwerk", "< 2.7.0" diff --git a/packages/cygnet/Gemfile.lock b/packages/cygnet/Gemfile.lock index 6c569b56..a7a5e69d 100644 --- a/packages/cygnet/Gemfile.lock +++ b/packages/cygnet/Gemfile.lock @@ -42,6 +42,7 @@ GEM concurrent-ruby (1.3.4) connection_pool (2.4.1) csv (3.3.0) + date (3.4.1) diff-lcs (1.5.1) docile (1.1.5) drb (2.2.1) @@ -60,6 +61,11 @@ GEM logger (1.6.2) method_source (1.1.0) minitest (5.25.4) + net-imap (0.4.18) + date + net-protocol + net-protocol (0.2.2) + timeout parallel (1.26.3) parser (3.3.6.0) ast (~> 2.4.1) @@ -126,6 +132,7 @@ GEM test-unit (3.1.5) power_assert thor (1.3.2) + timeout (0.4.2) tomlrb (2.0.3) tzinfo (2.0.6) concurrent-ruby (~> 1.0) @@ -135,6 +142,7 @@ GEM xml-simple (1.1.9) rexml yard (0.9.21) + zeitwerk (2.6.18) PLATFORMS arm64-darwin-20 @@ -152,6 +160,7 @@ DEPENDENCIES bundler (~> 2.1) cygnet! license_finder (~> 7.0) + net-imap (< 0.5.0) pry (>= 0.14) pry-byebug (= 3.10.1) rainbow (= 2.2.2) @@ -161,6 +170,7 @@ DEPENDENCIES simplecov (= 0.15.1) test-unit (= 3.1.5) yard (= 0.9.21) + zeitwerk (< 2.7.0) BUNDLED WITH 2.5.23 diff --git a/packages/cygnet/gemfiles/rails_6_0.gemfile b/packages/cygnet/gemfiles/rails_6_0.gemfile index d7404af3..2fd35a73 100644 --- a/packages/cygnet/gemfiles/rails_6_0.gemfile +++ b/packages/cygnet/gemfiles/rails_6_0.gemfile @@ -4,7 +4,9 @@ source "https://rubygems.org" +gem "net-imap", "< 0.5.0" gem "rails", "6.0.6.1" gem "rubocop-powerhome", path: "../../rubocop-powerhome" +gem "zeitwerk", "< 2.7.0" gemspec path: "../" diff --git a/packages/cygnet/gemfiles/rails_6_0.gemfile.lock b/packages/cygnet/gemfiles/rails_6_0.gemfile.lock index 43b5991a..56a20711 100644 --- a/packages/cygnet/gemfiles/rails_6_0.gemfile.lock +++ b/packages/cygnet/gemfiles/rails_6_0.gemfile.lock @@ -112,7 +112,7 @@ GEM method_source (1.1.0) mini_mime (1.1.5) minitest (5.25.4) - net-imap (0.5.1) + net-imap (0.4.18) date net-protocol net-pop (0.1.2) @@ -241,7 +241,7 @@ GEM xml-simple (1.1.9) rexml yard (0.9.21) - zeitwerk (2.7.1) + zeitwerk (2.6.18) PLATFORMS arm64-darwin-23 @@ -253,6 +253,7 @@ DEPENDENCIES bundler (~> 2.1) cygnet! license_finder (~> 7.0) + net-imap (< 0.5.0) pry (>= 0.14) pry-byebug (= 3.10.1) rails (= 6.0.6.1) @@ -263,6 +264,7 @@ DEPENDENCIES simplecov (= 0.15.1) test-unit (= 3.1.5) yard (= 0.9.21) + zeitwerk (< 2.7.0) BUNDLED WITH 2.5.23 diff --git a/packages/cygnet/gemfiles/rails_6_1.gemfile b/packages/cygnet/gemfiles/rails_6_1.gemfile index ff87d2ec..249a423d 100644 --- a/packages/cygnet/gemfiles/rails_6_1.gemfile +++ b/packages/cygnet/gemfiles/rails_6_1.gemfile @@ -4,7 +4,9 @@ source "https://rubygems.org" +gem "net-imap", "< 0.5.0" gem "rails", "6.1.7.7" gem "rubocop-powerhome", path: "../../rubocop-powerhome" +gem "zeitwerk", "< 2.7.0" gemspec path: "../" diff --git a/packages/cygnet/gemfiles/rails_6_1.gemfile.lock b/packages/cygnet/gemfiles/rails_6_1.gemfile.lock index 1f10e9c3..65636261 100644 --- a/packages/cygnet/gemfiles/rails_6_1.gemfile.lock +++ b/packages/cygnet/gemfiles/rails_6_1.gemfile.lock @@ -116,7 +116,7 @@ GEM method_source (1.1.0) mini_mime (1.1.5) minitest (5.25.4) - net-imap (0.5.1) + net-imap (0.4.18) date net-protocol net-pop (0.1.2) @@ -244,7 +244,7 @@ GEM xml-simple (1.1.9) rexml yard (0.9.21) - zeitwerk (2.7.1) + zeitwerk (2.6.18) PLATFORMS arm64-darwin-23 @@ -256,6 +256,7 @@ DEPENDENCIES bundler (~> 2.1) cygnet! license_finder (~> 7.0) + net-imap (< 0.5.0) pry (>= 0.14) pry-byebug (= 3.10.1) rails (= 6.1.7.7) @@ -266,6 +267,7 @@ DEPENDENCIES simplecov (= 0.15.1) test-unit (= 3.1.5) yard (= 0.9.21) + zeitwerk (< 2.7.0) BUNDLED WITH 2.5.23 diff --git a/packages/cygnet/gemfiles/rails_7_0.gemfile b/packages/cygnet/gemfiles/rails_7_0.gemfile index c7487831..0e2b5d04 100644 --- a/packages/cygnet/gemfiles/rails_7_0.gemfile +++ b/packages/cygnet/gemfiles/rails_7_0.gemfile @@ -4,7 +4,9 @@ source "https://rubygems.org" +gem "net-imap", "< 0.5.0" gem "rails", "7.0.8.1" gem "rubocop-powerhome", path: "../../rubocop-powerhome" +gem "zeitwerk", "< 2.7.0" gemspec path: "../" diff --git a/packages/cygnet/gemfiles/rails_7_0.gemfile.lock b/packages/cygnet/gemfiles/rails_7_0.gemfile.lock index 5177c4ff..9a230052 100644 --- a/packages/cygnet/gemfiles/rails_7_0.gemfile.lock +++ b/packages/cygnet/gemfiles/rails_7_0.gemfile.lock @@ -122,7 +122,7 @@ GEM method_source (1.1.0) mini_mime (1.1.5) minitest (5.25.4) - net-imap (0.5.1) + net-imap (0.4.18) date net-protocol net-pop (0.1.2) @@ -243,7 +243,7 @@ GEM xml-simple (1.1.9) rexml yard (0.9.21) - zeitwerk (2.7.1) + zeitwerk (2.6.18) PLATFORMS arm64-darwin-23 @@ -255,6 +255,7 @@ DEPENDENCIES bundler (~> 2.1) cygnet! license_finder (~> 7.0) + net-imap (< 0.5.0) pry (>= 0.14) pry-byebug (= 3.10.1) rails (= 7.0.8.1) @@ -265,6 +266,7 @@ DEPENDENCIES simplecov (= 0.15.1) test-unit (= 3.1.5) yard (= 0.9.21) + zeitwerk (< 2.7.0) BUNDLED WITH 2.5.23 diff --git a/packages/data_taster/Gemfile b/packages/data_taster/Gemfile index e4b21398..61320df8 100644 --- a/packages/data_taster/Gemfile +++ b/packages/data_taster/Gemfile @@ -4,6 +4,8 @@ source "https://rubygems.org" gemspec +gem "activesupport", "< 8.0.0" gem "net-imap", "< 0.5.0" gem "rubocop-powerhome", path: "../rubocop-powerhome", tag: "v0.5.2-rubocop-powerhome" +gem "securerandom", "< 0.4.0" gem "zeitwerk", "< 2.7.0" diff --git a/packages/data_taster/Gemfile.lock b/packages/data_taster/Gemfile.lock index 6f6982c2..6c2a30f2 100644 --- a/packages/data_taster/Gemfile.lock +++ b/packages/data_taster/Gemfile.lock @@ -17,65 +17,66 @@ PATH GEM remote: https://rubygems.org/ specs: - actioncable (8.0.0) - actionpack (= 8.0.0) - activesupport (= 8.0.0) + actioncable (7.2.2) + actionpack (= 7.2.2) + activesupport (= 7.2.2) nio4r (~> 2.0) websocket-driver (>= 0.6.1) zeitwerk (~> 2.6) - actionmailbox (8.0.0) - actionpack (= 8.0.0) - activejob (= 8.0.0) - activerecord (= 8.0.0) - activestorage (= 8.0.0) - activesupport (= 8.0.0) + actionmailbox (7.2.2) + actionpack (= 7.2.2) + activejob (= 7.2.2) + activerecord (= 7.2.2) + activestorage (= 7.2.2) + activesupport (= 7.2.2) mail (>= 2.8.0) - actionmailer (8.0.0) - actionpack (= 8.0.0) - actionview (= 8.0.0) - activejob (= 8.0.0) - activesupport (= 8.0.0) + actionmailer (7.2.2) + actionpack (= 7.2.2) + actionview (= 7.2.2) + activejob (= 7.2.2) + activesupport (= 7.2.2) mail (>= 2.8.0) rails-dom-testing (~> 2.2) - actionpack (8.0.0) - actionview (= 8.0.0) - activesupport (= 8.0.0) + actionpack (7.2.2) + actionview (= 7.2.2) + activesupport (= 7.2.2) nokogiri (>= 1.8.5) - rack (>= 2.2.4) + racc + rack (>= 2.2.4, < 3.2) rack-session (>= 1.0.1) rack-test (>= 0.6.3) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) useragent (~> 0.16) - actiontext (8.0.0) - actionpack (= 8.0.0) - activerecord (= 8.0.0) - activestorage (= 8.0.0) - activesupport (= 8.0.0) + actiontext (7.2.2) + actionpack (= 7.2.2) + activerecord (= 7.2.2) + activestorage (= 7.2.2) + activesupport (= 7.2.2) globalid (>= 0.6.0) nokogiri (>= 1.8.5) - actionview (8.0.0) - activesupport (= 8.0.0) + actionview (7.2.2) + activesupport (= 7.2.2) builder (~> 3.1) erubi (~> 1.11) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - activejob (8.0.0) - activesupport (= 8.0.0) + activejob (7.2.2) + activesupport (= 7.2.2) globalid (>= 0.3.6) - activemodel (8.0.0) - activesupport (= 8.0.0) - activerecord (8.0.0) - activemodel (= 8.0.0) - activesupport (= 8.0.0) + activemodel (7.2.2) + activesupport (= 7.2.2) + activerecord (7.2.2) + activemodel (= 7.2.2) + activesupport (= 7.2.2) timeout (>= 0.4.0) - activestorage (8.0.0) - actionpack (= 8.0.0) - activejob (= 8.0.0) - activerecord (= 8.0.0) - activesupport (= 8.0.0) + activestorage (7.2.2) + actionpack (= 7.2.2) + activejob (= 7.2.2) + activerecord (= 7.2.2) + activesupport (= 7.2.2) marcel (~> 1.0) - activesupport (8.0.0) + activesupport (7.2.2) base64 benchmark (>= 0.3) bigdecimal @@ -87,7 +88,6 @@ GEM minitest (>= 5.1) securerandom (>= 0.3) tzinfo (~> 2.0, >= 2.0.5) - uri (>= 0.13.1) appraisal (2.5.0) bundler rake @@ -172,20 +172,20 @@ GEM rack (>= 1.3) rackup (2.2.1) rack (>= 3) - rails (8.0.0) - actioncable (= 8.0.0) - actionmailbox (= 8.0.0) - actionmailer (= 8.0.0) - actionpack (= 8.0.0) - actiontext (= 8.0.0) - actionview (= 8.0.0) - activejob (= 8.0.0) - activemodel (= 8.0.0) - activerecord (= 8.0.0) - activestorage (= 8.0.0) - activesupport (= 8.0.0) + rails (7.2.2) + actioncable (= 7.2.2) + actionmailbox (= 7.2.2) + actionmailer (= 7.2.2) + actionpack (= 7.2.2) + actiontext (= 7.2.2) + actionview (= 7.2.2) + activejob (= 7.2.2) + activemodel (= 7.2.2) + activerecord (= 7.2.2) + activestorage (= 7.2.2) + activesupport (= 7.2.2) bundler (>= 1.15.0) - railties (= 8.0.0) + railties (= 7.2.2) rails-dom-testing (2.2.0) activesupport (>= 5.0.0) minitest @@ -193,9 +193,9 @@ GEM rails-html-sanitizer (1.6.1) loofah (~> 2.21) nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0) - railties (8.0.0) - actionpack (= 8.0.0) - activesupport (= 8.0.0) + railties (7.2.2) + actionpack (= 7.2.2) + activesupport (= 7.2.2) irb (~> 1.13) rackup (>= 1.0.0) rake (>= 12.2) @@ -249,7 +249,7 @@ GEM rubocop (~> 1.61) ruby-progressbar (1.13.0) rubyzip (2.3.2) - securerandom (0.4.0) + securerandom (0.3.2) simplecov (0.15.1) docile (~> 1.1.0) json (>= 1.8, < 3) @@ -264,7 +264,6 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.6.0) - uri (1.0.2) useragent (0.16.11) websocket-driver (0.7.6) websocket-extensions (>= 0.1.0) @@ -288,6 +287,7 @@ PLATFORMS x86_64-linux DEPENDENCIES + activesupport (< 8.0.0) appraisal (= 2.5.0) bundler (~> 2.1) data_taster! @@ -298,6 +298,7 @@ DEPENDENCIES rake (~> 13.0) rspec (~> 3.0) rubocop-powerhome! + securerandom (< 0.4.0) simplecov (= 0.15.1) test-unit (= 3.1.5) yard (= 0.9.34) diff --git a/packages/data_taster/gemfiles/rails_6_0.gemfile b/packages/data_taster/gemfiles/rails_6_0.gemfile index 7db6209f..e81698f4 100644 --- a/packages/data_taster/gemfiles/rails_6_0.gemfile +++ b/packages/data_taster/gemfiles/rails_6_0.gemfile @@ -2,9 +2,11 @@ source "https://rubygems.org" +gem "activesupport", "< 8.0.0" +gem "net-imap", "< 0.5.0" gem "rubocop-powerhome", path: "../../rubocop-powerhome", tag: "v0.5.2-rubocop-powerhome" +gem "securerandom", "< 0.4.0" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "6.0.6.1" gemspec path: "../" diff --git a/packages/data_taster/gemfiles/rails_6_0.gemfile.lock b/packages/data_taster/gemfiles/rails_6_0.gemfile.lock index cbd323fa..3e5f45d5 100644 --- a/packages/data_taster/gemfiles/rails_6_0.gemfile.lock +++ b/packages/data_taster/gemfiles/rails_6_0.gemfile.lock @@ -210,6 +210,7 @@ GEM rubocop (~> 1.61) ruby-progressbar (1.13.0) rubyzip (2.3.2) + securerandom (0.3.2) simplecov (0.15.1) docile (~> 1.1.0) json (>= 1.8, < 3) @@ -247,6 +248,7 @@ PLATFORMS x86_64-linux DEPENDENCIES + activesupport (< 8.0.0) appraisal (= 2.5.0) bundler (~> 2.1) data_taster! @@ -258,6 +260,7 @@ DEPENDENCIES rake (~> 13.0) rspec (~> 3.0) rubocop-powerhome! + securerandom (< 0.4.0) simplecov (= 0.15.1) test-unit (= 3.1.5) yard (= 0.9.34) diff --git a/packages/data_taster/gemfiles/rails_6_1.gemfile b/packages/data_taster/gemfiles/rails_6_1.gemfile index b7699e53..5fcf8103 100644 --- a/packages/data_taster/gemfiles/rails_6_1.gemfile +++ b/packages/data_taster/gemfiles/rails_6_1.gemfile @@ -2,9 +2,11 @@ source "https://rubygems.org" +gem "activesupport", "< 8.0.0" +gem "net-imap", "< 0.5.0" gem "rubocop-powerhome", path: "../../rubocop-powerhome", tag: "v0.5.2-rubocop-powerhome" +gem "securerandom", "< 0.4.0" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "6.1.7.7" gemspec path: "../" diff --git a/packages/data_taster/gemfiles/rails_6_1.gemfile.lock b/packages/data_taster/gemfiles/rails_6_1.gemfile.lock index f05228f4..55c8e3e9 100644 --- a/packages/data_taster/gemfiles/rails_6_1.gemfile.lock +++ b/packages/data_taster/gemfiles/rails_6_1.gemfile.lock @@ -214,6 +214,7 @@ GEM rubocop (~> 1.61) ruby-progressbar (1.13.0) rubyzip (2.3.2) + securerandom (0.3.2) simplecov (0.15.1) docile (~> 1.1.0) json (>= 1.8, < 3) @@ -250,6 +251,7 @@ PLATFORMS x86_64-linux DEPENDENCIES + activesupport (< 8.0.0) appraisal (= 2.5.0) bundler (~> 2.1) data_taster! @@ -261,6 +263,7 @@ DEPENDENCIES rake (~> 13.0) rspec (~> 3.0) rubocop-powerhome! + securerandom (< 0.4.0) simplecov (= 0.15.1) test-unit (= 3.1.5) yard (= 0.9.34) diff --git a/packages/data_taster/gemfiles/rails_7_0.gemfile b/packages/data_taster/gemfiles/rails_7_0.gemfile index 2cb0ac55..c7298466 100644 --- a/packages/data_taster/gemfiles/rails_7_0.gemfile +++ b/packages/data_taster/gemfiles/rails_7_0.gemfile @@ -2,9 +2,11 @@ source "https://rubygems.org" +gem "activesupport", "< 8.0.0" +gem "net-imap", "< 0.5.0" gem "rubocop-powerhome", path: "../../rubocop-powerhome", tag: "v0.5.2-rubocop-powerhome" +gem "securerandom", "< 0.4.0" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "7.0.8.1" gemspec path: "../" diff --git a/packages/data_taster/gemfiles/rails_7_0.gemfile.lock b/packages/data_taster/gemfiles/rails_7_0.gemfile.lock index 9ac28059..713898d4 100644 --- a/packages/data_taster/gemfiles/rails_7_0.gemfile.lock +++ b/packages/data_taster/gemfiles/rails_7_0.gemfile.lock @@ -220,6 +220,7 @@ GEM rubocop (~> 1.61) ruby-progressbar (1.13.0) rubyzip (2.3.2) + securerandom (0.3.2) simplecov (0.15.1) docile (~> 1.1.0) json (>= 1.8, < 3) @@ -249,6 +250,7 @@ PLATFORMS x86_64-linux DEPENDENCIES + activesupport (< 8.0.0) appraisal (= 2.5.0) bundler (~> 2.1) data_taster! @@ -260,6 +262,7 @@ DEPENDENCIES rake (~> 13.0) rspec (~> 3.0) rubocop-powerhome! + securerandom (< 0.4.0) simplecov (= 0.15.1) test-unit (= 3.1.5) yard (= 0.9.34) diff --git a/packages/edgestitch/gemfiles/rails_6_0.gemfile b/packages/edgestitch/gemfiles/rails_6_0.gemfile index af6393fa..e9a9b18e 100644 --- a/packages/edgestitch/gemfiles/rails_6_0.gemfile +++ b/packages/edgestitch/gemfiles/rails_6_0.gemfile @@ -2,9 +2,9 @@ source "https://rubygems.org" +gem "net-imap", "< 0.5.0" gem "rubocop-powerhome", path: "../../rubocop-powerhome" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "6.0.6.1" gemspec path: "../" diff --git a/packages/edgestitch/gemfiles/rails_6_1.gemfile b/packages/edgestitch/gemfiles/rails_6_1.gemfile index 8c598d78..63a2d7ef 100644 --- a/packages/edgestitch/gemfiles/rails_6_1.gemfile +++ b/packages/edgestitch/gemfiles/rails_6_1.gemfile @@ -2,9 +2,9 @@ source "https://rubygems.org" +gem "net-imap", "< 0.5.0" gem "rubocop-powerhome", path: "../../rubocop-powerhome" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "6.1.7.7" gemspec path: "../" diff --git a/packages/edgestitch/gemfiles/rails_7_0.gemfile b/packages/edgestitch/gemfiles/rails_7_0.gemfile index 67fc0edd..297d30fe 100644 --- a/packages/edgestitch/gemfiles/rails_7_0.gemfile +++ b/packages/edgestitch/gemfiles/rails_7_0.gemfile @@ -2,9 +2,9 @@ source "https://rubygems.org" +gem "net-imap", "< 0.5.0" gem "rubocop-powerhome", path: "../../rubocop-powerhome" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "7.0.8.1" gemspec path: "../" diff --git a/packages/lumberaxe/gemfiles/rails_6_0.gemfile b/packages/lumberaxe/gemfiles/rails_6_0.gemfile index af6393fa..e9a9b18e 100644 --- a/packages/lumberaxe/gemfiles/rails_6_0.gemfile +++ b/packages/lumberaxe/gemfiles/rails_6_0.gemfile @@ -2,9 +2,9 @@ source "https://rubygems.org" +gem "net-imap", "< 0.5.0" gem "rubocop-powerhome", path: "../../rubocop-powerhome" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "6.0.6.1" gemspec path: "../" diff --git a/packages/lumberaxe/gemfiles/rails_6_1.gemfile b/packages/lumberaxe/gemfiles/rails_6_1.gemfile index 8c598d78..63a2d7ef 100644 --- a/packages/lumberaxe/gemfiles/rails_6_1.gemfile +++ b/packages/lumberaxe/gemfiles/rails_6_1.gemfile @@ -2,9 +2,9 @@ source "https://rubygems.org" +gem "net-imap", "< 0.5.0" gem "rubocop-powerhome", path: "../../rubocop-powerhome" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "6.1.7.7" gemspec path: "../" diff --git a/packages/lumberaxe/gemfiles/rails_7_0.gemfile b/packages/lumberaxe/gemfiles/rails_7_0.gemfile index 67fc0edd..297d30fe 100644 --- a/packages/lumberaxe/gemfiles/rails_7_0.gemfile +++ b/packages/lumberaxe/gemfiles/rails_7_0.gemfile @@ -2,9 +2,9 @@ source "https://rubygems.org" +gem "net-imap", "< 0.5.0" gem "rubocop-powerhome", path: "../../rubocop-powerhome" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "7.0.8.1" gemspec path: "../" diff --git a/packages/lumberaxe/gemfiles/rails_7_1.gemfile b/packages/lumberaxe/gemfiles/rails_7_1.gemfile index 507cf25c..1b1296d3 100644 --- a/packages/lumberaxe/gemfiles/rails_7_1.gemfile +++ b/packages/lumberaxe/gemfiles/rails_7_1.gemfile @@ -2,9 +2,9 @@ source "https://rubygems.org" +gem "net-imap", "< 0.5.0" gem "rubocop-powerhome", path: "../../rubocop-powerhome" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "7.1.3" gemspec path: "../" diff --git a/packages/nitro_config/gemfiles/rails_6_0.gemfile b/packages/nitro_config/gemfiles/rails_6_0.gemfile index e1db08f7..911f849c 100644 --- a/packages/nitro_config/gemfiles/rails_6_0.gemfile +++ b/packages/nitro_config/gemfiles/rails_6_0.gemfile @@ -4,12 +4,12 @@ source "https://rubygems.org" gem "byebug" gem "license_finder", ">= 7.0" +gem "net-imap", "< 0.5.0" gem "rake", ">= 13.0" gem "rspec", ">= 3.0" gem "rubocop", ">= 1.32" gem "rubocop-powerhome", path: "../../rubocop-powerhome" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "6.0.6.1" gemspec path: "../" diff --git a/packages/nitro_config/gemfiles/rails_6_1.gemfile b/packages/nitro_config/gemfiles/rails_6_1.gemfile index 81dbd2db..892b8e06 100644 --- a/packages/nitro_config/gemfiles/rails_6_1.gemfile +++ b/packages/nitro_config/gemfiles/rails_6_1.gemfile @@ -4,12 +4,12 @@ source "https://rubygems.org" gem "byebug" gem "license_finder", ">= 7.0" +gem "net-imap", "< 0.5.0" gem "rake", ">= 13.0" gem "rspec", ">= 3.0" gem "rubocop", ">= 1.32" gem "rubocop-powerhome", path: "../../rubocop-powerhome" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "6.1.7.7" gemspec path: "../" diff --git a/packages/nitro_config/gemfiles/rails_7_0.gemfile b/packages/nitro_config/gemfiles/rails_7_0.gemfile index 664e0227..29ced874 100644 --- a/packages/nitro_config/gemfiles/rails_7_0.gemfile +++ b/packages/nitro_config/gemfiles/rails_7_0.gemfile @@ -4,12 +4,12 @@ source "https://rubygems.org" gem "byebug" gem "license_finder", ">= 7.0" +gem "net-imap", "< 0.5.0" gem "rake", ">= 13.0" gem "rspec", ">= 3.0" gem "rubocop", ">= 1.32" gem "rubocop-powerhome", path: "../../rubocop-powerhome" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "7.0.8.1" gemspec path: "../" diff --git a/packages/nitro_config/gemfiles/rails_7_1.gemfile b/packages/nitro_config/gemfiles/rails_7_1.gemfile index 11a6f6a5..54c8b787 100644 --- a/packages/nitro_config/gemfiles/rails_7_1.gemfile +++ b/packages/nitro_config/gemfiles/rails_7_1.gemfile @@ -4,12 +4,12 @@ source "https://rubygems.org" gem "byebug" gem "license_finder", ">= 7.0" +gem "net-imap", "< 0.5.0" gem "rake", ">= 13.0" gem "rspec", ">= 3.0" gem "rubocop", ">= 1.32" gem "rubocop-powerhome", path: "../../rubocop-powerhome" gem "zeitwerk", "< 2.7.0" -gem "net-imap", "< 0.5.0" gem "rails", "7.1.3.3" gemspec path: "../" diff --git a/packages/ostruct-sanitizer/Gemfile b/packages/ostruct-sanitizer/Gemfile index be99cd09..5a112c54 100644 --- a/packages/ostruct-sanitizer/Gemfile +++ b/packages/ostruct-sanitizer/Gemfile @@ -4,9 +4,11 @@ source "https://rubygems.org" gemspec +gem "activesupport", "< 8.0.0" gem "bundler", "~> 2.5.0" gem "byebug" gem "license_finder", "~> 7.0" gem "rake", "13.2.1" gem "rspec", "3.13.0" gem "rubocop-powerhome", "0.5.3" +gem "securerandom", "< 0.4.0" diff --git a/packages/ostruct-sanitizer/Gemfile.lock b/packages/ostruct-sanitizer/Gemfile.lock index 9724058f..6afc0003 100644 --- a/packages/ostruct-sanitizer/Gemfile.lock +++ b/packages/ostruct-sanitizer/Gemfile.lock @@ -6,7 +6,7 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (8.0.0) + activesupport (7.2.2) base64 benchmark (>= 0.3) bigdecimal @@ -18,7 +18,6 @@ GEM minitest (>= 5.1) securerandom (>= 0.3) tzinfo (~> 2.0, >= 2.0.5) - uri (>= 0.13.1) ast (2.4.2) base64 (0.2.0) benchmark (0.4.0) @@ -98,13 +97,12 @@ GEM rubocop (~> 1.61) ruby-progressbar (1.13.0) rubyzip (2.3.2) - securerandom (0.4.0) + securerandom (0.3.2) thor (1.3.2) tomlrb (2.0.3) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.6.0) - uri (1.0.2) with_env (1.1.0) xml-simple (1.1.9) rexml @@ -114,6 +112,7 @@ PLATFORMS ruby DEPENDENCIES + activesupport (< 8.0.0) bundler (~> 2.5.0) byebug license_finder (~> 7.0) @@ -121,6 +120,7 @@ DEPENDENCIES rake (= 13.2.1) rspec (= 3.13.0) rubocop-powerhome (= 0.5.3) + securerandom (< 0.4.0) BUNDLED WITH 2.5.23 diff --git a/packages/rabbet/Gemfile b/packages/rabbet/Gemfile index 8590911c..d7fd387d 100644 --- a/packages/rabbet/Gemfile +++ b/packages/rabbet/Gemfile @@ -4,6 +4,8 @@ source "https://rubygems.org" gemspec +gem "activesupport", "< 8.0.0" gem "net-imap", "< 0.5.0" gem "rubocop-powerhome", path: "../rubocop-powerhome" +gem "securerandom", "< 0.4.0" gem "zeitwerk", "< 2.7.0" diff --git a/packages/rabbet/Gemfile.lock b/packages/rabbet/Gemfile.lock index edd23a8c..89d950bc 100644 --- a/packages/rabbet/Gemfile.lock +++ b/packages/rabbet/Gemfile.lock @@ -19,65 +19,66 @@ PATH GEM remote: https://rubygems.org/ specs: - actioncable (8.0.0) - actionpack (= 8.0.0) - activesupport (= 8.0.0) + actioncable (7.2.2) + actionpack (= 7.2.2) + activesupport (= 7.2.2) nio4r (~> 2.0) websocket-driver (>= 0.6.1) zeitwerk (~> 2.6) - actionmailbox (8.0.0) - actionpack (= 8.0.0) - activejob (= 8.0.0) - activerecord (= 8.0.0) - activestorage (= 8.0.0) - activesupport (= 8.0.0) + actionmailbox (7.2.2) + actionpack (= 7.2.2) + activejob (= 7.2.2) + activerecord (= 7.2.2) + activestorage (= 7.2.2) + activesupport (= 7.2.2) mail (>= 2.8.0) - actionmailer (8.0.0) - actionpack (= 8.0.0) - actionview (= 8.0.0) - activejob (= 8.0.0) - activesupport (= 8.0.0) + actionmailer (7.2.2) + actionpack (= 7.2.2) + actionview (= 7.2.2) + activejob (= 7.2.2) + activesupport (= 7.2.2) mail (>= 2.8.0) rails-dom-testing (~> 2.2) - actionpack (8.0.0) - actionview (= 8.0.0) - activesupport (= 8.0.0) + actionpack (7.2.2) + actionview (= 7.2.2) + activesupport (= 7.2.2) nokogiri (>= 1.8.5) - rack (>= 2.2.4) + racc + rack (>= 2.2.4, < 3.2) rack-session (>= 1.0.1) rack-test (>= 0.6.3) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) useragent (~> 0.16) - actiontext (8.0.0) - actionpack (= 8.0.0) - activerecord (= 8.0.0) - activestorage (= 8.0.0) - activesupport (= 8.0.0) + actiontext (7.2.2) + actionpack (= 7.2.2) + activerecord (= 7.2.2) + activestorage (= 7.2.2) + activesupport (= 7.2.2) globalid (>= 0.6.0) nokogiri (>= 1.8.5) - actionview (8.0.0) - activesupport (= 8.0.0) + actionview (7.2.2) + activesupport (= 7.2.2) builder (~> 3.1) erubi (~> 1.11) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - activejob (8.0.0) - activesupport (= 8.0.0) + activejob (7.2.2) + activesupport (= 7.2.2) globalid (>= 0.3.6) - activemodel (8.0.0) - activesupport (= 8.0.0) - activerecord (8.0.0) - activemodel (= 8.0.0) - activesupport (= 8.0.0) + activemodel (7.2.2) + activesupport (= 7.2.2) + activerecord (7.2.2) + activemodel (= 7.2.2) + activesupport (= 7.2.2) timeout (>= 0.4.0) - activestorage (8.0.0) - actionpack (= 8.0.0) - activejob (= 8.0.0) - activerecord (= 8.0.0) - activesupport (= 8.0.0) + activestorage (7.2.2) + actionpack (= 7.2.2) + activejob (= 7.2.2) + activerecord (= 7.2.2) + activesupport (= 7.2.2) marcel (~> 1.0) - activesupport (8.0.0) + activesupport (7.2.2) base64 benchmark (>= 0.3) bigdecimal @@ -89,7 +90,6 @@ GEM minitest (>= 5.1) securerandom (>= 0.3) tzinfo (~> 2.0, >= 2.0.5) - uri (>= 0.13.1) ast (2.4.2) base64 (0.2.0) benchmark (0.4.0) @@ -107,10 +107,16 @@ GEM docile (1.1.5) drb (2.2.1) erubi (1.13.0) - ffi (1.17.0) + ffi (1.17.0-aarch64-linux-gnu) + ffi (1.17.0-aarch64-linux-musl) + ffi (1.17.0-arm-linux-gnu) + ffi (1.17.0-arm-linux-musl) ffi (1.17.0-arm64-darwin) + ffi (1.17.0-x86-linux-gnu) + ffi (1.17.0-x86-linux-musl) ffi (1.17.0-x86_64-darwin) ffi (1.17.0-x86_64-linux-gnu) + ffi (1.17.0-x86_64-linux-musl) globalid (1.2.1) activesupport (>= 6.1) i18n (1.14.6) @@ -141,7 +147,6 @@ GEM marcel (1.0.4) method_source (1.1.0) mini_mime (1.1.5) - mini_portile2 (2.8.8) minitest (5.25.4) net-imap (0.4.18) date @@ -153,11 +158,14 @@ GEM net-smtp (0.5.0) net-protocol nio4r (2.7.4) - nokogiri (1.17.1) - mini_portile2 (~> 2.8.2) + nokogiri (1.17.1-aarch64-linux) + racc (~> 1.4) + nokogiri (1.17.1-arm-linux) racc (~> 1.4) nokogiri (1.17.1-arm64-darwin) racc (~> 1.4) + nokogiri (1.17.1-x86-linux) + racc (~> 1.4) nokogiri (1.17.1-x86_64-darwin) racc (~> 1.4) nokogiri (1.17.1-x86_64-linux) @@ -184,20 +192,20 @@ GEM rack (>= 1.3) rackup (2.2.1) rack (>= 3) - rails (8.0.0) - actioncable (= 8.0.0) - actionmailbox (= 8.0.0) - actionmailer (= 8.0.0) - actionpack (= 8.0.0) - actiontext (= 8.0.0) - actionview (= 8.0.0) - activejob (= 8.0.0) - activemodel (= 8.0.0) - activerecord (= 8.0.0) - activestorage (= 8.0.0) - activesupport (= 8.0.0) + rails (7.2.2) + actioncable (= 7.2.2) + actionmailbox (= 7.2.2) + actionmailer (= 7.2.2) + actionpack (= 7.2.2) + actiontext (= 7.2.2) + actionview (= 7.2.2) + activejob (= 7.2.2) + activemodel (= 7.2.2) + activerecord (= 7.2.2) + activestorage (= 7.2.2) + activesupport (= 7.2.2) bundler (>= 1.15.0) - railties (= 8.0.0) + railties (= 7.2.2) rails-dom-testing (2.2.0) activesupport (>= 5.0.0) minitest @@ -205,9 +213,9 @@ GEM rails-html-sanitizer (1.6.1) loofah (~> 2.21) nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0) - railties (8.0.0) - actionpack (= 8.0.0) - activesupport (= 8.0.0) + railties (7.2.2) + actionpack (= 7.2.2) + activesupport (= 7.2.2) irb (~> 1.13) rackup (>= 1.0.0) rake (>= 12.2) @@ -269,7 +277,7 @@ GEM sprockets (> 3.0) sprockets-rails tilt - securerandom (0.4.0) + securerandom (0.3.2) simplecov (0.15.1) docile (~> 1.1.0) json (>= 1.8, < 3) @@ -292,7 +300,6 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.6.0) - uri (1.0.2) useragent (0.16.11) websocket-driver (0.7.6) websocket-extensions (>= 0.1.0) @@ -304,17 +311,23 @@ GEM zeitwerk (2.6.18) PLATFORMS - arm64-darwin-20 - arm64-darwin-21 - arm64-darwin-22 - ruby - x86_64-darwin-19 - x86_64-darwin-20 - x86_64-darwin-21 - x86_64-darwin-22 + aarch64-linux + aarch64-linux-gnu + aarch64-linux-musl + arm-linux + arm-linux-gnu + arm-linux-musl + arm64-darwin + x86-linux + x86-linux-gnu + x86-linux-musl + x86_64-darwin x86_64-linux + x86_64-linux-gnu + x86_64-linux-musl DEPENDENCIES + activesupport (< 8.0.0) bundler (~> 2.1) license_finder (~> 7.0) net-imap (< 0.5.0) @@ -325,6 +338,7 @@ DEPENDENCIES rake (~> 13.0) rspec (~> 3.0) rubocop-powerhome! + securerandom (< 0.4.0) simplecov (= 0.15.1) test-unit (= 3.1.5) yard (= 0.9.21) diff --git a/packages/rubocop-powerhome/gemfiles/rails_6_0.gemfile b/packages/rubocop-powerhome/gemfiles/rails_6_0.gemfile index 6dd0bcab..6e242671 100644 --- a/packages/rubocop-powerhome/gemfiles/rails_6_0.gemfile +++ b/packages/rubocop-powerhome/gemfiles/rails_6_0.gemfile @@ -2,8 +2,8 @@ source "https://rubygems.org" -gem "zeitwerk", "< 2.7.0" gem "net-imap", "< 0.5.0" +gem "zeitwerk", "< 2.7.0" gem "rails", "6.0.6.1" gemspec path: "../" diff --git a/packages/rubocop-powerhome/gemfiles/rails_6_1.gemfile b/packages/rubocop-powerhome/gemfiles/rails_6_1.gemfile index f7da94c7..cfa54229 100644 --- a/packages/rubocop-powerhome/gemfiles/rails_6_1.gemfile +++ b/packages/rubocop-powerhome/gemfiles/rails_6_1.gemfile @@ -2,8 +2,8 @@ source "https://rubygems.org" -gem "zeitwerk", "< 2.7.0" gem "net-imap", "< 0.5.0" +gem "zeitwerk", "< 2.7.0" gem "rails", "6.1.7.7" gemspec path: "../" diff --git a/packages/rubocop-powerhome/gemfiles/rails_7_0.gemfile b/packages/rubocop-powerhome/gemfiles/rails_7_0.gemfile index 901d5a50..f865f7cc 100644 --- a/packages/rubocop-powerhome/gemfiles/rails_7_0.gemfile +++ b/packages/rubocop-powerhome/gemfiles/rails_7_0.gemfile @@ -2,8 +2,8 @@ source "https://rubygems.org" -gem "zeitwerk", "< 2.7.0" gem "net-imap", "< 0.5.0" +gem "zeitwerk", "< 2.7.0" gem "rails", "7.0.8.1" gemspec path: "../"