From d0b5f3c8fb7c9de476d11ce6b7c711201d743de9 Mon Sep 17 00:00:00 2001 From: Anastasia Gorokhova-Alekseeva Date: Tue, 9 Sep 2025 20:38:25 +0300 Subject: [PATCH 1/6] =?UTF-8?q?=D0=A3=D0=B4=D0=B0=D0=BB=D1=8F=D0=B5=D0=BC?= =?UTF-8?q?=20=D0=BF=D0=BE=D0=B4=D0=B4=D0=B5=D1=80=D0=B6=D0=BA=D1=83=20rub?= =?UTF-8?q?y=201.9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 7 +------ insales_api.gemspec | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cd88090..55c0010 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,15 +16,10 @@ jobs: experimental: [false] ruby: - - 1.9.3 - 2.6 - #- 2.7 + - 2.7 - 3.2 - #include: - # - experimental: true - # ruby: head - env: BUNDLE_WITHOUT: lint steps: diff --git a/insales_api.gemspec b/insales_api.gemspec index bf6a93e..5d92e4f 100644 --- a/insales_api.gemspec +++ b/insales_api.gemspec @@ -19,7 +19,7 @@ Gem::Specification.new do |s| s.metadata["changelog_uri"] = "https://github.com/insales/insales_api/blob/master/CHANGELOG.md" end - s.required_ruby_version = '>= 1.9' + s.required_ruby_version = '>= 2.3' s.files = `git ls-files`.split("\n").reject do |f| f.match(Regexp.union( From e64527a973c36417b194dfb3ca1724cb6c2b8e53 Mon Sep 17 00:00:00 2001 From: Anastasia Gorokhova-Alekseeva Date: Tue, 9 Sep 2025 20:59:31 +0300 Subject: [PATCH 2/6] =?UTF-8?q?=D0=A3=D0=B2=D0=B5=D0=BB=D0=B8=D1=87=D0=B8?= =?UTF-8?q?=D0=B2=D0=B0=D0=B5=D0=BC=20=D0=BC=D0=B8=D0=BD=D0=B8=D0=BC=D0=B0?= =?UTF-8?q?=D0=BB=D1=8C=D0=BD=D1=83=D1=8E=20=D0=B2=D0=B5=D1=80=D1=81=D0=B8?= =?UTF-8?q?=D1=8E=20activeresource?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- insales_api.gemspec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/insales_api.gemspec b/insales_api.gemspec index 5d92e4f..85993c4 100644 --- a/insales_api.gemspec +++ b/insales_api.gemspec @@ -32,8 +32,9 @@ Gem::Specification.new do |s| )) end - s.add_dependency('activeresource', ['>= 3.0.0']) s.add_dependency('activesupport', ['>= 3.0.0']) + s.add_dependency('activeresource', ['>= 6.0.0']) + s.add_development_dependency 'rake', '>= 10.3' s.add_development_dependency 'rspec', '~> 3.12' end From 8936488c7d0f7f9f2c001b99dfdf7a8adb75ac97 Mon Sep 17 00:00:00 2001 From: Anastasia Gorokhova-Alekseeva Date: Tue, 9 Sep 2025 21:03:08 +0300 Subject: [PATCH 3/6] =?UTF-8?q?=D0=98=D1=81=D0=BF=D0=BE=D0=BB=D1=8C=D0=B7?= =?UTF-8?q?=D1=83=D0=B5=D0=BC=20Appraisal=20=D0=B8=20=D0=B4=D0=BE=D0=B1?= =?UTF-8?q?=D0=B0=D0=B2=D0=BB=D1=8F=D0=B5=D0=BC=20=D0=B0=D0=BA=D1=82=D1=83?= =?UTF-8?q?=D0=B0=D0=BB=D1=8C=D0=BD=D1=8B=D0=B5=20=D0=B2=D0=B5=D1=80=D1=81?= =?UTF-8?q?=D0=B8=D0=B8=20ruby?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 12 ++- Appraisals | 13 ++++ gemfiles/rails_71.gemfile | 15 ++++ gemfiles/rails_71.gemfile.lock | 133 +++++++++++++++++++++++++++++++++ gemfiles/rails_72.gemfile | 15 ++++ gemfiles/rails_72.gemfile.lock | 131 ++++++++++++++++++++++++++++++++ gemfiles/rails_80.gemfile | 15 ++++ gemfiles/rails_80.gemfile.lock | 133 +++++++++++++++++++++++++++++++++ insales_api.gemspec | 2 +- 9 files changed, 465 insertions(+), 4 deletions(-) create mode 100644 Appraisals create mode 100644 gemfiles/rails_71.gemfile create mode 100644 gemfiles/rails_71.gemfile.lock create mode 100644 gemfiles/rails_72.gemfile create mode 100644 gemfiles/rails_72.gemfile.lock create mode 100644 gemfiles/rails_80.gemfile create mode 100644 gemfiles/rails_80.gemfile.lock diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 55c0010..f923d6a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,18 +9,24 @@ on: jobs: test: runs-on: ubuntu-latest - continue-on-error: ${{matrix.experimental}} strategy: matrix: - experimental: [false] - ruby: - 2.6 - 2.7 + - 3.0 + - 3.1 - 3.2 + rails-version: + - 71 + - 72 + include: + - ruby: 3.2 + rails-version: 80 env: + BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rails_${{ matrix.rails-version }}.gemfile BUNDLE_WITHOUT: lint steps: - uses: actions/checkout@v3 diff --git a/Appraisals b/Appraisals new file mode 100644 index 0000000..380e4c0 --- /dev/null +++ b/Appraisals @@ -0,0 +1,13 @@ +# frozen_string_literal: true + +appraise 'rails_71' do + gem 'activesupport', '~>7.1.4' +end + +appraise 'rails_72' do + gem 'activesupport', '~>7.2.1' +end + +appraise 'rails_80' do + gem 'activesupport', '~>8.0.0' +end diff --git a/gemfiles/rails_71.gemfile b/gemfiles/rails_71.gemfile new file mode 100644 index 0000000..03598be --- /dev/null +++ b/gemfiles/rails_71.gemfile @@ -0,0 +1,15 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "activesupport", "~>7.1.4" + +group :lint do + gem "rubocop" + gem "rubocop-performance" + gem "rubocop-rails" + gem "rubocop-rake" + gem "rubocop-rspec" +end + +gemspec path: "../" diff --git a/gemfiles/rails_71.gemfile.lock b/gemfiles/rails_71.gemfile.lock new file mode 100644 index 0000000..506b073 --- /dev/null +++ b/gemfiles/rails_71.gemfile.lock @@ -0,0 +1,133 @@ +PATH + remote: .. + specs: + insales_api (0.2.0) + activeresource (>= 6.0.0) + +GEM + remote: https://rubygems.org/ + specs: + activemodel (7.1.5.2) + activesupport (= 7.1.5.2) + activemodel-serializers-xml (1.0.3) + activemodel (>= 5.0.0.a) + activesupport (>= 5.0.0.a) + builder (~> 3.1) + activeresource (6.1.4) + activemodel (>= 6.0) + activemodel-serializers-xml (~> 1.0) + activesupport (>= 6.0) + activesupport (7.1.5.2) + base64 + benchmark (>= 0.3) + bigdecimal + concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + logger (>= 1.4.2) + minitest (>= 5.1) + mutex_m + securerandom (>= 0.3) + tzinfo (~> 2.0) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.3) + base64 (0.3.0) + benchmark (0.4.1) + bigdecimal (3.2.3) + builder (3.3.0) + concurrent-ruby (1.3.5) + connection_pool (2.5.4) + diff-lcs (1.6.2) + drb (2.2.3) + i18n (1.14.7) + concurrent-ruby (~> 1.0) + json (2.13.2) + language_server-protocol (3.17.0.5) + lint_roller (1.1.0) + logger (1.7.0) + minitest (5.25.5) + mutex_m (0.3.0) + parallel (1.27.0) + parser (3.3.9.0) + ast (~> 2.4.1) + racc + prism (1.4.0) + racc (1.8.1) + rack (3.2.1) + rainbow (3.1.1) + rake (13.3.0) + regexp_parser (2.11.2) + rspec (3.13.1) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-core (3.13.5) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.5) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.5) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.5) + rubocop (1.80.2) + json (~> 2.3) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.1.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 2.9.3, < 3.0) + rubocop-ast (>= 1.46.0, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 4.0) + rubocop-ast (1.46.0) + parser (>= 3.3.7.2) + prism (~> 1.4) + rubocop-performance (1.26.0) + lint_roller (~> 1.1) + rubocop (>= 1.75.0, < 2.0) + rubocop-ast (>= 1.44.0, < 2.0) + rubocop-rails (2.33.3) + activesupport (>= 4.2.0) + lint_roller (~> 1.1) + rack (>= 1.1) + rubocop (>= 1.75.0, < 2.0) + rubocop-ast (>= 1.44.0, < 2.0) + rubocop-rake (0.7.1) + lint_roller (~> 1.1) + rubocop (>= 1.72.1) + rubocop-rspec (3.7.0) + lint_roller (~> 1.1) + rubocop (~> 1.72, >= 1.72.1) + ruby-progressbar (1.13.0) + securerandom (0.4.1) + thor (1.4.0) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (3.2.0) + unicode-emoji (~> 4.1) + unicode-emoji (4.1.0) + +PLATFORMS + ruby + x86_64-linux + +DEPENDENCIES + activesupport (~> 7.1.4) + appraisal (~> 2.5) + insales_api! + rake (>= 10.3) + rspec (~> 3.12) + rubocop + rubocop-performance + rubocop-rails + rubocop-rake + rubocop-rspec + +BUNDLED WITH + 2.4.0 diff --git a/gemfiles/rails_72.gemfile b/gemfiles/rails_72.gemfile new file mode 100644 index 0000000..30cc2de --- /dev/null +++ b/gemfiles/rails_72.gemfile @@ -0,0 +1,15 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "activesupport", "~>7.2.1" + +group :lint do + gem "rubocop" + gem "rubocop-performance" + gem "rubocop-rails" + gem "rubocop-rake" + gem "rubocop-rspec" +end + +gemspec path: "../" diff --git a/gemfiles/rails_72.gemfile.lock b/gemfiles/rails_72.gemfile.lock new file mode 100644 index 0000000..6896fc2 --- /dev/null +++ b/gemfiles/rails_72.gemfile.lock @@ -0,0 +1,131 @@ +PATH + remote: .. + specs: + insales_api (0.2.0) + activeresource (>= 6.0.0) + +GEM + remote: https://rubygems.org/ + specs: + activemodel (7.2.2.2) + activesupport (= 7.2.2.2) + activemodel-serializers-xml (1.0.3) + activemodel (>= 5.0.0.a) + activesupport (>= 5.0.0.a) + builder (~> 3.1) + activeresource (6.1.4) + activemodel (>= 6.0) + activemodel-serializers-xml (~> 1.0) + activesupport (>= 6.0) + activesupport (7.2.2.2) + base64 + benchmark (>= 0.3) + bigdecimal + concurrent-ruby (~> 1.0, >= 1.3.1) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + logger (>= 1.4.2) + minitest (>= 5.1) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.3) + base64 (0.3.0) + benchmark (0.4.1) + bigdecimal (3.2.3) + builder (3.3.0) + concurrent-ruby (1.3.5) + connection_pool (2.5.4) + diff-lcs (1.6.2) + drb (2.2.3) + i18n (1.14.7) + concurrent-ruby (~> 1.0) + json (2.13.2) + language_server-protocol (3.17.0.5) + lint_roller (1.1.0) + logger (1.7.0) + minitest (5.25.5) + parallel (1.27.0) + parser (3.3.9.0) + ast (~> 2.4.1) + racc + prism (1.4.0) + racc (1.8.1) + rack (3.2.1) + rainbow (3.1.1) + rake (13.3.0) + regexp_parser (2.11.2) + rspec (3.13.1) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-core (3.13.5) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.5) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.5) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.5) + rubocop (1.80.2) + json (~> 2.3) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.1.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 2.9.3, < 3.0) + rubocop-ast (>= 1.46.0, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 4.0) + rubocop-ast (1.46.0) + parser (>= 3.3.7.2) + prism (~> 1.4) + rubocop-performance (1.26.0) + lint_roller (~> 1.1) + rubocop (>= 1.75.0, < 2.0) + rubocop-ast (>= 1.44.0, < 2.0) + rubocop-rails (2.33.3) + activesupport (>= 4.2.0) + lint_roller (~> 1.1) + rack (>= 1.1) + rubocop (>= 1.75.0, < 2.0) + rubocop-ast (>= 1.44.0, < 2.0) + rubocop-rake (0.7.1) + lint_roller (~> 1.1) + rubocop (>= 1.72.1) + rubocop-rspec (3.7.0) + lint_roller (~> 1.1) + rubocop (~> 1.72, >= 1.72.1) + ruby-progressbar (1.13.0) + securerandom (0.4.1) + thor (1.4.0) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (3.2.0) + unicode-emoji (~> 4.1) + unicode-emoji (4.1.0) + +PLATFORMS + ruby + x86_64-linux + +DEPENDENCIES + activesupport (~> 7.2.1) + appraisal (~> 2.5) + insales_api! + rake (>= 10.3) + rspec (~> 3.12) + rubocop + rubocop-performance + rubocop-rails + rubocop-rake + rubocop-rspec + +BUNDLED WITH + 2.4.0 diff --git a/gemfiles/rails_80.gemfile b/gemfiles/rails_80.gemfile new file mode 100644 index 0000000..934a2d6 --- /dev/null +++ b/gemfiles/rails_80.gemfile @@ -0,0 +1,15 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "activesupport", "~>8.0.0" + +group :lint do + gem "rubocop" + gem "rubocop-performance" + gem "rubocop-rails" + gem "rubocop-rake" + gem "rubocop-rspec" +end + +gemspec path: "../" diff --git a/gemfiles/rails_80.gemfile.lock b/gemfiles/rails_80.gemfile.lock new file mode 100644 index 0000000..9645569 --- /dev/null +++ b/gemfiles/rails_80.gemfile.lock @@ -0,0 +1,133 @@ +PATH + remote: .. + specs: + insales_api (0.2.0) + activeresource (>= 6.0.0) + +GEM + remote: https://rubygems.org/ + specs: + activemodel (8.0.2.1) + activesupport (= 8.0.2.1) + activemodel-serializers-xml (1.0.3) + activemodel (>= 5.0.0.a) + activesupport (>= 5.0.0.a) + builder (~> 3.1) + activeresource (6.1.4) + activemodel (>= 6.0) + activemodel-serializers-xml (~> 1.0) + activesupport (>= 6.0) + activesupport (8.0.2.1) + base64 + benchmark (>= 0.3) + bigdecimal + concurrent-ruby (~> 1.0, >= 1.3.1) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + logger (>= 1.4.2) + minitest (>= 5.1) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) + uri (>= 0.13.1) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.3) + base64 (0.3.0) + benchmark (0.4.1) + bigdecimal (3.2.3) + builder (3.3.0) + concurrent-ruby (1.3.5) + connection_pool (2.5.4) + diff-lcs (1.6.2) + drb (2.2.3) + i18n (1.14.7) + concurrent-ruby (~> 1.0) + json (2.13.2) + language_server-protocol (3.17.0.5) + lint_roller (1.1.0) + logger (1.7.0) + minitest (5.25.5) + parallel (1.27.0) + parser (3.3.9.0) + ast (~> 2.4.1) + racc + prism (1.4.0) + racc (1.8.1) + rack (3.2.1) + rainbow (3.1.1) + rake (13.3.0) + regexp_parser (2.11.2) + rspec (3.13.1) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-core (3.13.5) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.5) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.5) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.5) + rubocop (1.80.2) + json (~> 2.3) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.1.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 2.9.3, < 3.0) + rubocop-ast (>= 1.46.0, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 4.0) + rubocop-ast (1.46.0) + parser (>= 3.3.7.2) + prism (~> 1.4) + rubocop-performance (1.26.0) + lint_roller (~> 1.1) + rubocop (>= 1.75.0, < 2.0) + rubocop-ast (>= 1.44.0, < 2.0) + rubocop-rails (2.33.3) + activesupport (>= 4.2.0) + lint_roller (~> 1.1) + rack (>= 1.1) + rubocop (>= 1.75.0, < 2.0) + rubocop-ast (>= 1.44.0, < 2.0) + rubocop-rake (0.7.1) + lint_roller (~> 1.1) + rubocop (>= 1.72.1) + rubocop-rspec (3.7.0) + lint_roller (~> 1.1) + rubocop (~> 1.72, >= 1.72.1) + ruby-progressbar (1.13.0) + securerandom (0.4.1) + thor (1.4.0) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (3.2.0) + unicode-emoji (~> 4.1) + unicode-emoji (4.1.0) + uri (1.0.3) + +PLATFORMS + ruby + x86_64-linux + +DEPENDENCIES + activesupport (~> 8.0.0) + appraisal (~> 2.5) + insales_api! + rake (>= 10.3) + rspec (~> 3.12) + rubocop + rubocop-performance + rubocop-rails + rubocop-rake + rubocop-rspec + +BUNDLED WITH + 2.6.7 diff --git a/insales_api.gemspec b/insales_api.gemspec index 85993c4..3e813c3 100644 --- a/insales_api.gemspec +++ b/insales_api.gemspec @@ -32,9 +32,9 @@ Gem::Specification.new do |s| )) end - s.add_dependency('activesupport', ['>= 3.0.0']) s.add_dependency('activeresource', ['>= 6.0.0']) s.add_development_dependency 'rake', '>= 10.3' s.add_development_dependency 'rspec', '~> 3.12' + s.add_development_dependency "appraisal", '~> 2.5' end From 191799a2d2ebba43b013d8ffec5784b5fe899640 Mon Sep 17 00:00:00 2001 From: Anastasia Gorokhova-Alekseeva Date: Tue, 9 Sep 2025 21:13:03 +0300 Subject: [PATCH 4/6] =?UTF-8?q?=D0=9D=D0=B5=20=D0=BF=D0=BE=D0=B4=D0=B4?= =?UTF-8?q?=D0=B5=D1=80=D0=B6=D0=B8=D0=B2=D0=B0=D0=B5=D0=BC=20ruby=202.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Минимально поддерживаемые рельсы 7.1 требуеют ruby >= 2.7 --- .github/workflows/test.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f923d6a..008f41b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,6 @@ jobs: strategy: matrix: ruby: - - 2.6 - 2.7 - 3.0 - 3.1 From 1494886228b6c07af47c5a9a0fa9e79d79c0b22c Mon Sep 17 00:00:00 2001 From: Anastasia Gorokhova-Alekseeva Date: Tue, 9 Sep 2025 21:15:07 +0300 Subject: [PATCH 5/6] =?UTF-8?q?Rails=207.2=20=D0=BF=D0=BE=D0=B4=D0=B4?= =?UTF-8?q?=D0=B5=D1=80=D0=B6=D0=B8=D0=B2=D0=B0=D1=8E=D1=82=20ruby=20>=3D3?= =?UTF-8?q?.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 008f41b..66726a8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,8 +19,11 @@ jobs: - 3.2 rails-version: - 71 - - 72 include: + - ruby: 3.1 + rails-version: 72 + - ruby: 3.2 + rails-version: 72 - ruby: 3.2 rails-version: 80 From 2b9a741f7e6a9f9d71643696b723141a822b7e3f Mon Sep 17 00:00:00 2001 From: Anastasia Gorokhova-Alekseeva Date: Wed, 10 Sep 2025 16:25:27 +0300 Subject: [PATCH 6/6] =?UTF-8?q?=D0=9D=D0=B5=20=D0=BA=D0=BE=D0=BC=D0=BC?= =?UTF-8?q?=D0=B8=D1=82=D0=B8=D0=BC=20gemfile.lock=20=D0=B4=D0=BB=D1=8F=20?= =?UTF-8?q?appraisal?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gemfiles/rails_71.gemfile.lock | 133 --------------------------------- gemfiles/rails_72.gemfile.lock | 131 -------------------------------- gemfiles/rails_80.gemfile.lock | 133 --------------------------------- 3 files changed, 397 deletions(-) delete mode 100644 gemfiles/rails_71.gemfile.lock delete mode 100644 gemfiles/rails_72.gemfile.lock delete mode 100644 gemfiles/rails_80.gemfile.lock diff --git a/gemfiles/rails_71.gemfile.lock b/gemfiles/rails_71.gemfile.lock deleted file mode 100644 index 506b073..0000000 --- a/gemfiles/rails_71.gemfile.lock +++ /dev/null @@ -1,133 +0,0 @@ -PATH - remote: .. - specs: - insales_api (0.2.0) - activeresource (>= 6.0.0) - -GEM - remote: https://rubygems.org/ - specs: - activemodel (7.1.5.2) - activesupport (= 7.1.5.2) - activemodel-serializers-xml (1.0.3) - activemodel (>= 5.0.0.a) - activesupport (>= 5.0.0.a) - builder (~> 3.1) - activeresource (6.1.4) - activemodel (>= 6.0) - activemodel-serializers-xml (~> 1.0) - activesupport (>= 6.0) - activesupport (7.1.5.2) - base64 - benchmark (>= 0.3) - bigdecimal - concurrent-ruby (~> 1.0, >= 1.0.2) - connection_pool (>= 2.2.5) - drb - i18n (>= 1.6, < 2) - logger (>= 1.4.2) - minitest (>= 5.1) - mutex_m - securerandom (>= 0.3) - tzinfo (~> 2.0) - appraisal (2.5.0) - bundler - rake - thor (>= 0.14.0) - ast (2.4.3) - base64 (0.3.0) - benchmark (0.4.1) - bigdecimal (3.2.3) - builder (3.3.0) - concurrent-ruby (1.3.5) - connection_pool (2.5.4) - diff-lcs (1.6.2) - drb (2.2.3) - i18n (1.14.7) - concurrent-ruby (~> 1.0) - json (2.13.2) - language_server-protocol (3.17.0.5) - lint_roller (1.1.0) - logger (1.7.0) - minitest (5.25.5) - mutex_m (0.3.0) - parallel (1.27.0) - parser (3.3.9.0) - ast (~> 2.4.1) - racc - prism (1.4.0) - racc (1.8.1) - rack (3.2.1) - rainbow (3.1.1) - rake (13.3.0) - regexp_parser (2.11.2) - rspec (3.13.1) - rspec-core (~> 3.13.0) - rspec-expectations (~> 3.13.0) - rspec-mocks (~> 3.13.0) - rspec-core (3.13.5) - rspec-support (~> 3.13.0) - rspec-expectations (3.13.5) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.13.0) - rspec-mocks (3.13.5) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.13.0) - rspec-support (3.13.5) - rubocop (1.80.2) - json (~> 2.3) - language_server-protocol (~> 3.17.0.2) - lint_roller (~> 1.1.0) - parallel (~> 1.10) - parser (>= 3.3.0.2) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 2.9.3, < 3.0) - rubocop-ast (>= 1.46.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 4.0) - rubocop-ast (1.46.0) - parser (>= 3.3.7.2) - prism (~> 1.4) - rubocop-performance (1.26.0) - lint_roller (~> 1.1) - rubocop (>= 1.75.0, < 2.0) - rubocop-ast (>= 1.44.0, < 2.0) - rubocop-rails (2.33.3) - activesupport (>= 4.2.0) - lint_roller (~> 1.1) - rack (>= 1.1) - rubocop (>= 1.75.0, < 2.0) - rubocop-ast (>= 1.44.0, < 2.0) - rubocop-rake (0.7.1) - lint_roller (~> 1.1) - rubocop (>= 1.72.1) - rubocop-rspec (3.7.0) - lint_roller (~> 1.1) - rubocop (~> 1.72, >= 1.72.1) - ruby-progressbar (1.13.0) - securerandom (0.4.1) - thor (1.4.0) - tzinfo (2.0.6) - concurrent-ruby (~> 1.0) - unicode-display_width (3.2.0) - unicode-emoji (~> 4.1) - unicode-emoji (4.1.0) - -PLATFORMS - ruby - x86_64-linux - -DEPENDENCIES - activesupport (~> 7.1.4) - appraisal (~> 2.5) - insales_api! - rake (>= 10.3) - rspec (~> 3.12) - rubocop - rubocop-performance - rubocop-rails - rubocop-rake - rubocop-rspec - -BUNDLED WITH - 2.4.0 diff --git a/gemfiles/rails_72.gemfile.lock b/gemfiles/rails_72.gemfile.lock deleted file mode 100644 index 6896fc2..0000000 --- a/gemfiles/rails_72.gemfile.lock +++ /dev/null @@ -1,131 +0,0 @@ -PATH - remote: .. - specs: - insales_api (0.2.0) - activeresource (>= 6.0.0) - -GEM - remote: https://rubygems.org/ - specs: - activemodel (7.2.2.2) - activesupport (= 7.2.2.2) - activemodel-serializers-xml (1.0.3) - activemodel (>= 5.0.0.a) - activesupport (>= 5.0.0.a) - builder (~> 3.1) - activeresource (6.1.4) - activemodel (>= 6.0) - activemodel-serializers-xml (~> 1.0) - activesupport (>= 6.0) - activesupport (7.2.2.2) - base64 - benchmark (>= 0.3) - bigdecimal - concurrent-ruby (~> 1.0, >= 1.3.1) - connection_pool (>= 2.2.5) - drb - i18n (>= 1.6, < 2) - logger (>= 1.4.2) - minitest (>= 5.1) - securerandom (>= 0.3) - tzinfo (~> 2.0, >= 2.0.5) - appraisal (2.5.0) - bundler - rake - thor (>= 0.14.0) - ast (2.4.3) - base64 (0.3.0) - benchmark (0.4.1) - bigdecimal (3.2.3) - builder (3.3.0) - concurrent-ruby (1.3.5) - connection_pool (2.5.4) - diff-lcs (1.6.2) - drb (2.2.3) - i18n (1.14.7) - concurrent-ruby (~> 1.0) - json (2.13.2) - language_server-protocol (3.17.0.5) - lint_roller (1.1.0) - logger (1.7.0) - minitest (5.25.5) - parallel (1.27.0) - parser (3.3.9.0) - ast (~> 2.4.1) - racc - prism (1.4.0) - racc (1.8.1) - rack (3.2.1) - rainbow (3.1.1) - rake (13.3.0) - regexp_parser (2.11.2) - rspec (3.13.1) - rspec-core (~> 3.13.0) - rspec-expectations (~> 3.13.0) - rspec-mocks (~> 3.13.0) - rspec-core (3.13.5) - rspec-support (~> 3.13.0) - rspec-expectations (3.13.5) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.13.0) - rspec-mocks (3.13.5) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.13.0) - rspec-support (3.13.5) - rubocop (1.80.2) - json (~> 2.3) - language_server-protocol (~> 3.17.0.2) - lint_roller (~> 1.1.0) - parallel (~> 1.10) - parser (>= 3.3.0.2) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 2.9.3, < 3.0) - rubocop-ast (>= 1.46.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 4.0) - rubocop-ast (1.46.0) - parser (>= 3.3.7.2) - prism (~> 1.4) - rubocop-performance (1.26.0) - lint_roller (~> 1.1) - rubocop (>= 1.75.0, < 2.0) - rubocop-ast (>= 1.44.0, < 2.0) - rubocop-rails (2.33.3) - activesupport (>= 4.2.0) - lint_roller (~> 1.1) - rack (>= 1.1) - rubocop (>= 1.75.0, < 2.0) - rubocop-ast (>= 1.44.0, < 2.0) - rubocop-rake (0.7.1) - lint_roller (~> 1.1) - rubocop (>= 1.72.1) - rubocop-rspec (3.7.0) - lint_roller (~> 1.1) - rubocop (~> 1.72, >= 1.72.1) - ruby-progressbar (1.13.0) - securerandom (0.4.1) - thor (1.4.0) - tzinfo (2.0.6) - concurrent-ruby (~> 1.0) - unicode-display_width (3.2.0) - unicode-emoji (~> 4.1) - unicode-emoji (4.1.0) - -PLATFORMS - ruby - x86_64-linux - -DEPENDENCIES - activesupport (~> 7.2.1) - appraisal (~> 2.5) - insales_api! - rake (>= 10.3) - rspec (~> 3.12) - rubocop - rubocop-performance - rubocop-rails - rubocop-rake - rubocop-rspec - -BUNDLED WITH - 2.4.0 diff --git a/gemfiles/rails_80.gemfile.lock b/gemfiles/rails_80.gemfile.lock deleted file mode 100644 index 9645569..0000000 --- a/gemfiles/rails_80.gemfile.lock +++ /dev/null @@ -1,133 +0,0 @@ -PATH - remote: .. - specs: - insales_api (0.2.0) - activeresource (>= 6.0.0) - -GEM - remote: https://rubygems.org/ - specs: - activemodel (8.0.2.1) - activesupport (= 8.0.2.1) - activemodel-serializers-xml (1.0.3) - activemodel (>= 5.0.0.a) - activesupport (>= 5.0.0.a) - builder (~> 3.1) - activeresource (6.1.4) - activemodel (>= 6.0) - activemodel-serializers-xml (~> 1.0) - activesupport (>= 6.0) - activesupport (8.0.2.1) - base64 - benchmark (>= 0.3) - bigdecimal - concurrent-ruby (~> 1.0, >= 1.3.1) - connection_pool (>= 2.2.5) - drb - i18n (>= 1.6, < 2) - logger (>= 1.4.2) - minitest (>= 5.1) - securerandom (>= 0.3) - tzinfo (~> 2.0, >= 2.0.5) - uri (>= 0.13.1) - appraisal (2.5.0) - bundler - rake - thor (>= 0.14.0) - ast (2.4.3) - base64 (0.3.0) - benchmark (0.4.1) - bigdecimal (3.2.3) - builder (3.3.0) - concurrent-ruby (1.3.5) - connection_pool (2.5.4) - diff-lcs (1.6.2) - drb (2.2.3) - i18n (1.14.7) - concurrent-ruby (~> 1.0) - json (2.13.2) - language_server-protocol (3.17.0.5) - lint_roller (1.1.0) - logger (1.7.0) - minitest (5.25.5) - parallel (1.27.0) - parser (3.3.9.0) - ast (~> 2.4.1) - racc - prism (1.4.0) - racc (1.8.1) - rack (3.2.1) - rainbow (3.1.1) - rake (13.3.0) - regexp_parser (2.11.2) - rspec (3.13.1) - rspec-core (~> 3.13.0) - rspec-expectations (~> 3.13.0) - rspec-mocks (~> 3.13.0) - rspec-core (3.13.5) - rspec-support (~> 3.13.0) - rspec-expectations (3.13.5) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.13.0) - rspec-mocks (3.13.5) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.13.0) - rspec-support (3.13.5) - rubocop (1.80.2) - json (~> 2.3) - language_server-protocol (~> 3.17.0.2) - lint_roller (~> 1.1.0) - parallel (~> 1.10) - parser (>= 3.3.0.2) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 2.9.3, < 3.0) - rubocop-ast (>= 1.46.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 4.0) - rubocop-ast (1.46.0) - parser (>= 3.3.7.2) - prism (~> 1.4) - rubocop-performance (1.26.0) - lint_roller (~> 1.1) - rubocop (>= 1.75.0, < 2.0) - rubocop-ast (>= 1.44.0, < 2.0) - rubocop-rails (2.33.3) - activesupport (>= 4.2.0) - lint_roller (~> 1.1) - rack (>= 1.1) - rubocop (>= 1.75.0, < 2.0) - rubocop-ast (>= 1.44.0, < 2.0) - rubocop-rake (0.7.1) - lint_roller (~> 1.1) - rubocop (>= 1.72.1) - rubocop-rspec (3.7.0) - lint_roller (~> 1.1) - rubocop (~> 1.72, >= 1.72.1) - ruby-progressbar (1.13.0) - securerandom (0.4.1) - thor (1.4.0) - tzinfo (2.0.6) - concurrent-ruby (~> 1.0) - unicode-display_width (3.2.0) - unicode-emoji (~> 4.1) - unicode-emoji (4.1.0) - uri (1.0.3) - -PLATFORMS - ruby - x86_64-linux - -DEPENDENCIES - activesupport (~> 8.0.0) - appraisal (~> 2.5) - insales_api! - rake (>= 10.3) - rspec (~> 3.12) - rubocop - rubocop-performance - rubocop-rails - rubocop-rake - rubocop-rspec - -BUNDLED WITH - 2.6.7