shakapacker 6.1.0.beta.0 → 6.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4167db4aea00b8ed494df2151cb5fd7ad414dc6617e8c1b0ee5537d461c7c968
4
- data.tar.gz: 7cc1c3c5f9c5a39801ac1801b252ee609e01a6c06508541b64d30fadcf7464ed
3
+ metadata.gz: 1ed9a099f6d2af01d86664505f7a8cd13196d666beb526d5f7a360fb1473ce77
4
+ data.tar.gz: 2e87b7d185a54fbbee7f717507c58a77093cc23eaaab500f28ccebde3560c738
5
5
  SHA512:
6
- metadata.gz: 56ce966357cbf20bcf9fb92839e94988a9f91768118aca2960ec53b0b0ed377df04b0bbb6801e885a9011eafa63655537dc36c63a50eda6cca4d46cba319beee
7
- data.tar.gz: 163807c57c4e543967a58a3dc96630d92d50fd798bac7d78536c39eaf055281c150922e98e66ad5af5e41daf3b2739b48a0cc5d1285f3251f875fda3581389f4
6
+ metadata.gz: ad534bf595ba05e3b4a2bb1eb44132c2eb0762b61de98390745940043873878d70cc1e391f4a8e51432c51e433463a9ca01f0fb6a205e990e1cf77daa0c68214
7
+ data.tar.gz: a53836485058bf673e8fecd3db4f22660dd104fef0c71be543bfada101c0cce20ad83706f9ceb8e50057cce79d6e24a921d8bf8965a87a32e3f24d66d5773a17
@@ -20,11 +20,8 @@ jobs:
20
20
  node-version: ${{ matrix.node }}
21
21
  cache: yarn
22
22
 
23
- - name: Install yarn maybe
24
- run: which yarn || npm install -g yarn
25
-
26
23
  - name: Install dependencies
27
- run: yarn --frozen-lockfile
24
+ run: yarn --frozen-lockfile --non-interactive --prefer-offline
28
25
 
29
26
  - name: Jest Specs
30
27
  run: yarn test
@@ -3,13 +3,12 @@ name: JS lint
3
3
  on: [push, pull_request]
4
4
 
5
5
  jobs:
6
- js-lint:
6
+ lint:
7
7
  name: JS Lint
8
-
9
8
  strategy:
10
9
  matrix:
11
10
  os: [ubuntu-latest]
12
- node: [14]
11
+ node: [12.x, 14.x, 16.x]
13
12
 
14
13
  runs-on: ${{ matrix.os }}
15
14
 
@@ -21,11 +20,8 @@ jobs:
21
20
  node-version: ${{ matrix.node }}
22
21
  cache: yarn
23
22
 
24
- - name: Install yarn maybe
25
- run: which yarn || npm install -g yarn
26
-
27
23
  - name: Install dependencies
28
- run: yarn --frozen-lockfile
24
+ run: yarn --frozen-lockfile --non-interactive --prefer-offline
29
25
 
30
26
  - name: Lint
31
27
  run: yarn lint
@@ -6,34 +6,17 @@ jobs:
6
6
  rubocop:
7
7
  name: Rubocop
8
8
  runs-on: ${{ matrix.os }}
9
- env:
10
- BUNDLE_JOBS: 4
11
- BUNDLE_RETRY: 3
12
9
  strategy:
13
10
  matrix:
14
11
  os: [ubuntu-latest]
15
- ruby: [
16
- 2.7
17
- ]
12
+ ruby: ['2.7', '3.0']
18
13
 
19
14
  steps:
20
15
  - uses: actions/checkout@v2
21
- - uses: actions/cache@v2
22
- with:
23
- path: /home/runner/bundle
24
- key: bundle-use-ruby-gems-${{ hashFiles('**/Gemfile.lock') }}
25
- restore-keys: |
26
- bundle-use-ruby-gems-
27
-
28
16
  - uses: ruby/setup-ruby@v1
29
17
  with:
30
18
  ruby-version: ${{ matrix.ruby }}
19
+ bundler-cache: true
31
20
 
32
- - name: Bundle install
33
- run: |
34
- gem install bundler -v 2.1.4
35
- bundle config path /home/runner/bundle
36
- bundle install
37
-
38
- - name: Ruby linter
21
+ - name: Ruby rubocop
39
22
  run: bundle exec rubocop
@@ -6,43 +6,36 @@ jobs:
6
6
  test:
7
7
  name: Ruby specs
8
8
  runs-on: ${{ matrix.os }}
9
- continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' || matrix.experimental }}
10
9
  strategy:
11
- fail-fast: false
12
10
  matrix:
13
11
  os: [ubuntu-latest]
14
- ruby:
15
- - 2.7
16
- - "3.0"
12
+ ruby: ['2.6', '2.7', '3.0']
17
13
  gemfile:
18
14
  - gemfiles/Gemfile-rails.5.2.x
19
15
  - gemfiles/Gemfile-rails.6.0.x
20
16
  - gemfiles/Gemfile-rails.6.1.x
17
+ - gemfiles/Gemfile-rails.7.0.x
18
+ - gemfiles/Gemfile-rails-edge
21
19
  exclude:
22
- - ruby: 2.5
23
- gemfile: gemfiles/Gemfile-rails.6.1.x
24
- - ruby: "3.0"
25
- gemfile: gemfiles/Gemfile-rails.5.2.x
26
- experimental: [false]
27
- include:
28
- - ruby: 2.7
20
+ - ruby: 2.6
29
21
  os: ubuntu-latest
30
- gemfile: gemfiles/Gemfile-rails-edge
31
- experimental: true
32
- - ruby: "3.0"
22
+ gemfile: gemfiles/Gemfile-rails.7.0.x
23
+ - ruby: 2.6
33
24
  os: ubuntu-latest
34
25
  gemfile: gemfiles/Gemfile-rails-edge
35
- experimental: true
26
+ - ruby: 3.0
27
+ os: ubuntu-latest
28
+ gemfile: gemfiles/Gemfile-rails.5.2.x
36
29
 
37
30
  env:
38
31
  BUNDLE_GEMFILE: ${{ matrix.gemfile }}
32
+
39
33
  steps:
40
34
  - uses: actions/checkout@v2
41
-
42
35
  - uses: ruby/setup-ruby@v1
43
36
  with:
44
37
  ruby-version: ${{ matrix.ruby }}
45
- bundler-cache: true # Run "bundle install", and cache the result automatically.
38
+ bundler-cache: true
46
39
 
47
40
  - name: Ruby specs
48
- run: bundle exec rake
41
+ run: bundle exec rake test
data/.node-version CHANGED
@@ -1 +1 @@
1
- 16.7.0
1
+ 16
data/.rubocop.yml CHANGED
@@ -1,6 +1,5 @@
1
1
  require: rubocop-performance
2
2
  AllCops:
3
- TargetRubyVersion: 2.7
4
3
  # RuboCop has a bunch of cops enabled by default. This setting tells RuboCop
5
4
  # to ignore them, so only the ones explicitly set in this file are enabled.
6
5
  DisabledByDefault: true
data/CHANGELOG.md CHANGED
@@ -1,11 +1,19 @@
1
1
  * For versions prior to v6, see the [5.x stable branch of rails/webpacker](https://github.com/rails/webpacker/tree/5-x-stable).
2
- * Please see [UPGRADE GUIDE](./docs/v6_upgrade.md).
2
+ * Please see [v6 Upgrade Guide](./docs/v6_upgrade.md) to go from version prior to v6.
3
3
 
4
4
  ## Versions
5
- ### [Unreleased]
5
+ ## [Unreleased]
6
6
  Changes since last non-beta release.
7
7
 
8
8
  *Please add entries here for your pull requests that are not yet released.*
9
+
10
+ ## [v6.1.0] - February 4, 2020
11
+ ### Added
12
+ - Support for SWC loader. [PR 29](https://github.com/shakacode/shakapacker/pull/29) by [tomdracz](https://github.com/tomdracz).
13
+
14
+ ### Fixed
15
+ - Static asset subdirectories are retained after compilation, matching Webpacker v5 behaviour. [PR 47](https://github.com/shakacode/shakapacker/pull/47) by [tomdracz](https://github.com/tomdracz). Fixes issues [rails/webpacker#2956](https://github.com/rails/webpacker/issues/2956) which broke in [rails/webpacker#2802](https://github.com/rails/webpacker/pull/2802).
16
+
9
17
  ## [v6.0.2] - January 25, 2022
10
18
  ### Improved
11
19
  - Fix incorrect command name in warning. [PR 33](https://github.com/shakacode/shakapacker/pull/33) by [tricknotes](https://github.com/tricknotes).
@@ -58,8 +66,11 @@ Changes since last non-beta release.
58
66
  - Splitchunks enabled by default
59
67
  - CSS extraction enabled by default, except when devServer is configured and running
60
68
 
69
+ ## v5.4.3 and prior changes from rails/webpacker
70
+ See [CHANGELOG.md in rails/webpacker (up to v5.4.3)](https://github.com/rails/webpacker/blob/master/CHANGELOG.md)
61
71
 
62
- [Unreleased]: https://github.com/shakacode/shakapacker/compare/6.0.2...master
72
+ [Unreleased]: https://github.com/shakacode/shakapacker/compare/v6.1.0...master
73
+ [v6.1.0]: https://github.com/shakacode/shakapacker/compare/v6.0.2...v6.1.0
63
74
  [v6.0.2]: https://github.com/shakacode/shakapacker/compare/v6.0.1...v6.0.2
64
75
  [v6.0.1]: https://github.com/shakacode/shakapacker/compare/v6.0.0...v6.0.1
65
76
  [v6.0.0 changes from v6.0.0.rc.6]: https://github.com/shakacode/shakapacker/compare/aba79635e6ff6562ec04d3c446d57ef19a5fef7d...v6.0.0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- shakapacker (6.0.0)
4
+ shakapacker (6.1.0.beta.0)
5
5
  activesupport (>= 5.2)
6
6
  rack-proxy (>= 0.6.1)
7
7
  railties (>= 5.2)
data/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # Shakapacker
2
2
 
3
- _Official, actively maintained fork of [rails/webpacker](https://github.com/rails/webpacker). Internal naming for `shakapacker` will continue to use `webpacker` where possible. Notably, the NPM package name is `shakapacker`._
3
+ _Official, actively maintained successor to [rails/webpacker](https://github.com/rails/webpacker). Internal naming for `shakapacker` will continue to use `webpacker` where possible for v6. ShakaCode stands behind long-term maintainence and development of this project for the Rails community._
4
+
5
+
4
6
  * See [V6 Upgrade](./docs/v6_upgrade.md) for upgrading from v5 or prior v6 releases.
5
7
 
6
8
  [![Ruby specs](https://github.com/shakacode/shakapacker/workflows/Ruby%20specs/badge.svg)](https://github.com/shakacode/shakapacker/actions)
@@ -12,11 +14,12 @@ _Official, actively maintained fork of [rails/webpacker](https://github.com/rail
12
14
  [![Gem](https://img.shields.io/gem/v/shakapacker.svg)](https://rubygems.org/gems/shakapacker)
13
15
  [![npm version](https://badge.fury.io/js/shakapacker.svg)](https://badge.fury.io/js/shakapacker)
14
16
 
15
- Webpacker makes it easy to use the JavaScript pre-processor and bundler
16
- [Webpack v5](https://webpack.js.org/)
17
+ Webpacker makes it easy to use the JavaScript pre-processor and bundler [Webpack v5+](https://webpack.js.org/)
17
18
  to manage application-like JavaScript in Rails. It can coexist with the asset pipeline,
18
19
  leaving Webpack responsible solely for app-like JavaScript, or it can be used exclusively, making it also responsible for images, fonts, and CSS.
19
20
 
21
+ Check out 6.1.0.beta.0 for [SWC](https://swc.rs/) support! It's way faster than babel.
22
+
20
23
  See a comparison of [webpacker with jsbundling-rails](https://github.com/rails/jsbundling-rails/blob/main/docs/comparison_with_webpacker.md).
21
24
 
22
25
  Discussion forums to discuss debugging and troubleshooting tips. Please open issues for bugs and feature requests:
@@ -34,6 +37,7 @@ Discussion forums to discuss debugging and troubleshooting tips. Please open iss
34
37
  - [Installation](#installation)
35
38
  - [Rails v6+](#rails-v6)
36
39
  - [Note for Sprockets usage](#note-for-sprockets-usage)
40
+ - [Note for Yarn v2 usage](#note-for-yarn-v2-usage)
37
41
  - [Usage](#usage)
38
42
  - [View Helpers](#view-helpers)
39
43
  - [Defer for `javascript_pack_tag`](#defer-for-javascript_pack_tag)
@@ -67,7 +71,7 @@ Discussion forums to discuss debugging and troubleshooting tips. Please open iss
67
71
 
68
72
  ## Prerequisites
69
73
 
70
- - Ruby 2.7+
74
+ - Ruby 2.6+
71
75
  - Rails 5.2+
72
76
  - Node.js 12.13.0+ || 14+
73
77
  - Yarn
@@ -142,6 +146,12 @@ In order to enable this, make sure you add `node_modules` to the asset load path
142
146
  Rails.application.config.assets.paths << Rails.root.join('node_modules')
143
147
  ```
144
148
 
149
+ ### Note for Yarn v2 usage
150
+
151
+ If you are using Yarn v2 (berry), please note that PnP modules are not supported.
152
+
153
+ In order to use Shakapacker with Yarn v2, make sure you set `nodeLinker: node-modules` in your `.yarnrc.yml` file as per the [Yarn docs](https://yarnpkg.com/getting-started/migration#step-by-step) to opt out of Plug'n'Play behaviour.
154
+
145
155
  ## Usage
146
156
 
147
157
  ### View Helpers
@@ -1,6 +1,8 @@
1
1
  # Using SWC Loader
2
2
 
3
- :warning: This feature is currently experimental. If you face any issues, please report at https://github.com/shakacode/shakapacker/issues.
3
+ :warning: This feature is currently experimental. The configuration and API are subject to change during the beta release cycle.
4
+
5
+ If you face any issues, please report at https://github.com/shakacode/shakapacker/issues.
4
6
 
5
7
  ## About SWC
6
8
 
@@ -23,7 +25,7 @@ yarn add -D @swc/core swc-loader
23
25
  2. Add or change `webpacker_loader` value in your default `webpacker.yml` config to `swc`
24
26
  The default configuration of babel is done by using `package.json` to use the file within the `shakapacker` package.
25
27
 
26
- ```json
28
+ ```yml
27
29
  default: &default
28
30
  source_path: app/javascript
29
31
  source_entry_path: /
data/docs/v6_upgrade.md CHANGED
@@ -1,25 +1,45 @@
1
- # Upgrading from Webpacker 5 to 6
1
+ # Upgrading from Webpacker v5 to Shakapacker v6
2
2
 
3
- There are several substantial changes in Webpacker 6 that you need to manually account for when coming from Webpacker 5. This guide will help you through it.
3
+ There are several substantial changes in Shakapacker v6 that you need to manually account for when coming from Webpacker 5. This guide will help you through it.
4
4
 
5
- ## Webpacker has become a slimmer wrapper around Webpack
5
+ ## Webpacker/Shakapacker has become a slimmer wrapper around Webpack
6
6
 
7
7
  By default, Webpacker 6 is focused on compiling and bundling JavaScript. This pairs with the existing asset pipeline in Rails that's setup to transpile CSS and static images using [Sprockets](https://github.com/rails/sprockets). For most developers, that's the recommended combination. But if you'd like to use Webpacker for CSS and static assets as well, please see [integrations](https://github.com/shakacode/shakapacker#integrations) for more information.
8
8
 
9
- Webpacker used to configure Webpack indirectly, which lead to a [complicated secondary configuration process](https://github.com/rails/webpacker/blob/5-x-stable/docs/webpack.md). This was done in order to provide default configurations for the most popular frameworks, but ended up creating more complexity than it cured. So now Webpacker delegates all configuration directly to Webpack's default configuration setup.
9
+ Webpacker used to configure Webpack indirectly, which lead to a [complicated secondary configuration process](https://github.com/rails/webpacker/blob/5-x-stable/docs/webpack.md). This was done in order to provide default configurations for the most popular frameworks, but ended up creating more complexity than it cured. So now Webpacker delegates all configuration directly to Webpack's default configuration setup. Additionally, all major dependencies, like `webpack` and `babel` are now **peer** dependencies, so you are free to upgrade those.
10
10
 
11
- This means you have to configure integration with frameworks yourself, but webpack-merge helps with this. See this example for [Vue](https://github.com/shakacode/shakapacker#other-frameworks) and scroll to the bottom for [more examples](#examples-of-v5-to-v6).
11
+ While you have to configure integration with frameworks yourself, [`webpack-merge`](https://github.com/survivejs/webpack-merge) helps with this. See this example for [Vue](https://github.com/shakacode/shakapacker#other-frameworks) and scroll to the bottom for [more examples](#examples-of-v5-to-v6).
12
12
 
13
- ## webpacker v6.0.0.rc.6 to shakapacker
13
+ ## webpacker v6.0.0.rc.6 to shakapacker v6.0.0
14
14
  See an example migration here: [PR 27](https://github.com/shakacode/react_on_rails_tutorial_with_ssr_and_hmr_fast_refresh/pull/27).
15
15
 
16
- ### Update
17
- 1. Peer dependencies. Run `yarn add @babel/core @babel/plugin-transform-runtime @babel/preset-env @babel/runtime babel-loader compression-webpack-plugin terser-webpack-plugin webpack webpack-assets-manifest webpack-cli webpack-merge webpack-sources webpack-dev-server`
16
+ ### Update Steps to v6.0.0 from v6.0.0.rc.6
17
+ _If you're on webpacker v5, follow below steps to get to v6.0.0.rc.6 first._
18
+
19
+ 1. Change the gem name from `webpacker` to `shakapacker` and the NPM package from `@rails/webpacker` to `shakapacker`.
20
+ 1. Install the peer dependencies. Run `yarn add @babel/core @babel/plugin-transform-runtime @babel/preset-env @babel/runtime babel-loader compression-webpack-plugin terser-webpack-plugin webpack webpack-assets-manifest webpack-cli webpack-merge webpack-sources webpack-dev-server`
18
21
  1. Update any scripts that called `bin/webpack` or `bin/webpack-dev-server` to `bin/webpacker` or `bin/webpacker-dev-server`
19
- 1. Update your webpack config for a single config file, `config/webpack/webpack.config.js`.
20
- 1. Update `babel.config.js` if you need JSX support.
22
+ 1. Update your webpack config for a single config file, `config/webpack/webpack.config.js`. If you want to use the prior style of having a separate file for each NODE_ENV, you can use this shim for `config/webpack/webpack.config.js`:
23
+ ```js
24
+ const { env, webpackConfig } = require('shakapacker')
25
+ const { existsSync } = require('fs')
26
+ const { resolve } = require('path')
27
+
28
+ const envSpecificConfig = () => {
29
+ const path = resolve(__dirname, `${env.nodeEnv}.js`)
30
+ if (existsSync(path)) {
31
+ console.log(`Loading ENV specific webpack configuration file ${path}`)
32
+ return require(path)
33
+ } else {
34
+ return webpackConfig
35
+ }
36
+ }
37
+
38
+ module.exports = envSpecificConfig()
39
+ ```
40
+ 1. Update `babel.config.js` if you need JSX support. See [Customizing Babel Config](./customizing_babel_config.md)
21
41
 
22
- ## How to upgrade to Webpacker v6 from v5
42
+ ## How to upgrade to Webpacker v6.0.0.rc.6 from v5
23
43
  1. Ensure you have a clean working git branch. You will be overwriting all your files and reverting the changes that you don't want.
24
44
 
25
45
  1. Consider changing from the v5 default for `source_entry_path` in `webpacker.yml`.
@@ -159,7 +179,7 @@ See an example migration here: [PR 27](https://github.com/shakacode/react_on_rai
159
179
 
160
180
  1. Update any scripts that called `/bin/webpack` or `bin/webpack-dev-server` to `/bin/webpacker` or `bin/webpacker-dev-server`
161
181
 
162
- 1. Try your app!
182
+ 1. Now, follow the steps above to get to shakapacker v6 from webpacker v6.0.0.rc.6[
163
183
 
164
184
  ## Examples of v5 to v6
165
185
 
@@ -0,0 +1,12 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
4
+
5
+ gemspec path: "../"
6
+
7
+ gem "rails", '~>7.0.0'
8
+ gem "arel", github: "rails/arel"
9
+ gem "rake", ">= 11.1"
10
+ gem "rack-proxy", require: false
11
+ gem "minitest", "~> 5.0"
12
+ gem "byebug"
@@ -1,4 +1,4 @@
1
1
  module Webpacker
2
2
  # Change the version in package.json too, please!
3
- VERSION = "6.1.0.beta.0".freeze
3
+ VERSION = "6.1.0".freeze
4
4
  end
@@ -1,3 +1,6 @@
1
+ const { dirname, join } = require('path')
2
+ const { source_path: sourcePath } = require('../config')
3
+
1
4
  module.exports = {
2
5
  test: [
3
6
  /\.bmp$/,
@@ -18,6 +21,14 @@ module.exports = {
18
21
  exclude: [/\.(js|mjs|jsx|ts|tsx)$/],
19
22
  type: 'asset/resource',
20
23
  generator: {
21
- filename: 'static/[name]-[hash][ext][query]'
24
+ filename: (pathData) => {
25
+ const folders = dirname(pathData.filename)
26
+ .replace(`${sourcePath}/`, '')
27
+ .split('/')
28
+ .slice(1)
29
+
30
+ const foldersWithStatic = join('static', ...folders)
31
+ return `${foldersWithStatic}/[name]-[hash][ext][query]`
32
+ }
22
33
  }
23
34
  }
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shakapacker",
3
- "version": "6.1.0-beta.0",
3
+ "version": "6.1.0",
4
4
  "description": "Use webpack to manage app-like JavaScript modules in Rails",
5
5
  "main": "package/index.js",
6
6
  "files": [
data/webpacker.gemspec CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
15
15
  "source_code_uri" => "https://github.com/shakacode/shakapacker/tree/v#{npm_version}",
16
16
  }
17
17
 
18
- s.required_ruby_version = ">= 2.7.0"
18
+ s.required_ruby_version = ">= 2.6.0"
19
19
 
20
20
  s.add_dependency "activesupport", ">= 5.2"
21
21
  s.add_dependency "railties", ">= 5.2"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shakapacker
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.1.0.beta.0
4
+ version: 6.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2022-01-28 00:00:00.000000000 Z
13
+ date: 2022-02-04 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activesupport
@@ -149,6 +149,7 @@ files:
149
149
  - gemfiles/Gemfile-rails.5.2.x
150
150
  - gemfiles/Gemfile-rails.6.0.x
151
151
  - gemfiles/Gemfile-rails.6.1.x
152
+ - gemfiles/Gemfile-rails.7.0.x
152
153
  - lib/install/application.js
153
154
  - lib/install/bin/webpacker
154
155
  - lib/install/bin/webpacker-dev-server
@@ -272,7 +273,7 @@ homepage: https://github.com/shakacode/shakapacker
272
273
  licenses:
273
274
  - MIT
274
275
  metadata:
275
- source_code_uri: https://github.com/shakacode/shakapacker/tree/v6.1.0.beta.0
276
+ source_code_uri: https://github.com/shakacode/shakapacker/tree/v6.1.0
276
277
  post_install_message:
277
278
  rdoc_options: []
278
279
  require_paths:
@@ -281,12 +282,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
281
282
  requirements:
282
283
  - - ">="
283
284
  - !ruby/object:Gem::Version
284
- version: 2.7.0
285
+ version: 2.6.0
285
286
  required_rubygems_version: !ruby/object:Gem::Requirement
286
287
  requirements:
287
- - - ">"
288
+ - - ">="
288
289
  - !ruby/object:Gem::Version
289
- version: 1.3.1
290
+ version: '0'
290
291
  requirements: []
291
292
  rubygems_version: 3.2.32
292
293
  signing_key: