solidus_dev_support 2.6.0 → 2.8.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: ecf66be08fc8080f6c64bfd58e1f81ebe5c66aa72d6473146a7fa0ff1ad68e9b
4
- data.tar.gz: 6f1fe3ec075e8ec5935a336eeedc78974262945cca8eb38e831518e062104d60
3
+ metadata.gz: 33b0d8ce068309192e7131a9b14ba4f4a4aaa0f26437b6f7f7acb67f108435c2
4
+ data.tar.gz: b9050730ef761e1822f3f6a7544093f43fe3c3d53b0d7687b44bd2085f9924b0
5
5
  SHA512:
6
- metadata.gz: 15433d4424d7fb44d65be238ddc4240ffb82201b32ed4c94d46ce418ef3fbeda26d84f328750996e57afc12e5a24f515f6fd98aaaa5cb4191f62d199bbd266f4
7
- data.tar.gz: 3c0fed4e30d243ad9a99ad4e17abe9db1e2978c1c1d90190e636a07355b2eca5a49b938b9998dec1a0126c72101f6360b84e96c814db9ef9a04fd07337fab968
6
+ metadata.gz: 5dc1178e3a826f16d81b31af688b4213ed3c47aa65dcc18c24678be64c5726db7df0272a5688a80188ac953bcc9c8b8b81bfa9bc03fe0f926467f304e301e494
7
+ data.tar.gz: 47748cc87caf9a9e768d706148a647d5f64da8a80df73db13ffd851fc2313eee90e3a73bf3c22b8314c0414d541eca657adcd6928c448740a1af6d21a43430af
data/.circleci/config.yml CHANGED
@@ -20,44 +20,44 @@ commands:
20
20
  bundle --version
21
21
 
22
22
  jobs:
23
- solidus-master:
23
+ solidus-main:
24
24
  executor:
25
25
  name: solidusio_extensions/sqlite
26
- ruby_version: '3.1'
27
- steps: ['setup', 'solidusio_extensions/run-tests-solidus-master']
26
+ ruby_version: '3.2'
27
+ steps: ['setup', 'solidusio_extensions/run-tests-solidus-main']
28
28
  solidus-current:
29
29
  executor:
30
30
  name: solidusio_extensions/sqlite
31
- ruby_version: '3.0'
31
+ ruby_version: '3.1'
32
32
  steps: ['setup', 'solidusio_extensions/run-tests-solidus-current']
33
33
  solidus-older:
34
34
  executor:
35
35
  name: solidusio_extensions/sqlite
36
- ruby_version: '2.7'
36
+ ruby_version: '3.0'
37
37
  steps: ['setup', 'solidusio_extensions/run-tests-solidus-older']
38
38
  lint-code:
39
39
  executor:
40
40
  name: solidusio_extensions/sqlite
41
- ruby_version: '3.0'
41
+ ruby_version: '3.1'
42
42
  steps: ['setup', 'solidusio_extensions/lint-code']
43
43
 
44
44
  workflows:
45
45
  "Run specs on supported Solidus versions":
46
46
  jobs:
47
- - solidus-master
47
+ - solidus-main
48
48
  - solidus-current
49
49
  - solidus-older
50
50
  - lint-code
51
51
 
52
- "Weekly run specs against master":
52
+ "Weekly run specs against main":
53
53
  triggers:
54
54
  - schedule:
55
55
  cron: "0 0 * * 4" # every Thursday
56
56
  filters:
57
57
  branches:
58
58
  only:
59
- - master
59
+ - main
60
60
  jobs:
61
- - solidus-master
61
+ - solidus-main
62
62
  - solidus-current
63
63
  - solidus-older
data/.mergify.yml CHANGED
@@ -1,7 +1,7 @@
1
1
  pull_request_rules:
2
2
  - name: request changelog labels when a PR is missing them
3
3
  conditions:
4
- - base=master
4
+ - base=main
5
5
  - -label=bug
6
6
  - -label=enhancement
7
7
  - -label=documentation
@@ -31,7 +31,7 @@ pull_request_rules:
31
31
  Once the correct labels have been set, simply remove the `needs changelog label` label from this PR so I can merge it.
32
32
  - name: merge PRs automatically
33
33
  conditions:
34
- - base=master
34
+ - base=main
35
35
  - -label="needs changelog label"
36
36
  - -label=blocked
37
37
  - "#approved-reviews-by>=1"
data/Gemfile CHANGED
@@ -7,7 +7,7 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
7
7
  # Specify your gem's dependencies in solidus_dev_support.gemspec
8
8
  gemspec
9
9
 
10
- branch = ENV.fetch('SOLIDUS_BRANCH', 'master')
10
+ branch = ENV.fetch('SOLIDUS_BRANCH', 'main')
11
11
  gem 'solidus', github: 'solidusio/solidus', branch: branch
12
12
 
13
13
  # A workaround for https://github.com/bundler/bundler/issues/6677
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
  [![CircleCI](https://circleci.com/gh/solidusio/solidus_dev_support.svg?style=shield)](https://circleci.com/gh/solidusio/solidus_dev_support)
5
- [![codecov](https://codecov.io/gh/solidusio/solidus_dev_support/branch/master/graph/badge.svg)](https://codecov.io/gh/solidusio/solidus_dev_support)
5
+ [![codecov](https://codecov.io/gh/solidusio/solidus_dev_support/branch/main/graph/badge.svg)](https://codecov.io/gh/solidusio/solidus_dev_support)
6
6
 
7
7
  This gem contains common development functionality for Solidus extensions.
8
8
 
@@ -78,7 +78,7 @@ the `DB` and `SOLIDUS_BRANCH` env variables.
78
78
  DB=[postgres|mysql|sqlite] SOLIDUS_BRANCH=<BRANCH-NAME> bin/sandbox
79
79
  ```
80
80
 
81
- By default we use sqlite3 and the master branch.
81
+ By default we use sqlite3 and the main branch.
82
82
 
83
83
  ### Rails generators
84
84
 
@@ -192,7 +192,7 @@ The above command will:
192
192
 
193
193
  * bump the gem version to the next minor (you can also use `patch`, `major` or a specific version
194
194
  number);
195
- * commit the change and push it to `origin/master`;
195
+ * commit the change and push it to `origin/main`;
196
196
  * create a Git tag;
197
197
  * push the tag to the `origin` remote;
198
198
  * release the new version on RubyGems.
@@ -234,15 +234,9 @@ experiment.
234
234
 
235
235
  To install this gem onto your local machine, run `bin/rake install`.
236
236
 
237
- To release a new version:
237
+ ### Releasing new versions
238
238
 
239
- 1. update the version number in `version.rb`
240
- 2. update the changelog with `bin/rake changelog`
241
- 3. commit the changes using `Release SolidusDevSupport v1.2.3` as the message
242
- 3. run `bin/rake release`
243
-
244
- The last command will create a git tag for the version, push git commits and tags, and push the `.gem` file to
245
- [rubygems.org](https://rubygems.org).
239
+ Please use the same process suggested for extensions in the [dedicated page](https://github.com/solidusio/solidus/wiki/How-to-release-extensions) in the Solidus wiki.
246
240
 
247
241
  ## Contributing
248
242
 
@@ -79,7 +79,7 @@ module SolidusDevSupport
79
79
  gem.license = 'BSD-3-Clause'
80
80
 
81
81
  gem.metadata['homepage_uri'] = gem.homepage = "https://github.com/#{repo}#readme"
82
- gem.metadata['changelog_uri'] = "https://github.com/#{repo}/blob/master/CHANGELOG.md"
82
+ gem.metadata['changelog_uri'] = "https://github.com/#{repo}/blob/main/CHANGELOG.md"
83
83
  gem.metadata['source_code_uri'] = "https://github.com/#{repo}"
84
84
  end
85
85
  end
@@ -83,7 +83,6 @@ module SolidusDevSupport
83
83
  config.user = repo.owner
84
84
  config.project = repo.name
85
85
  config.future_release = "v#{ENV.fetch('UNRELEASED_VERSION') { gemspec.version }}"
86
-
87
86
  rescue Octokit::InvalidRepository
88
87
  warn <<~WARN
89
88
  It won't be possible to automatically generate the CHANGELOG for this extension because the
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'webdrivers/chromedriver'
4
-
5
3
  # Allow to override the initial windows size
6
4
  CAPYBARA_WINDOW_SIZE = ENV.fetch('CAPYBARA_WINDOW_SIZE', '1920x1080').split('x', 2).map(&:to_i)
7
5
  CAPYBARA_WINDOW_WIDTH = CAPYBARA_WINDOW_SIZE[0]
@@ -39,14 +39,14 @@ workflows:
39
39
  - run-specs-with-mysql
40
40
  - lint-code
41
41
 
42
- "Weekly run specs against master":
42
+ "Weekly run specs against main":
43
43
  triggers:
44
44
  - schedule:
45
45
  cron: "0 0 * * 4" # every Thursday
46
46
  filters:
47
47
  branches:
48
48
  only:
49
- - master
49
+ - main
50
50
  jobs:
51
51
  - run-specs-with-sqlite
52
52
  - run-specs-with-postgres
@@ -0,0 +1,3 @@
1
+ # Changelog
2
+
3
+ See https://github.com/<%=default_repo%>/releases or OLD_CHANGELOG.md for older versions.
@@ -16,13 +16,13 @@ follow so that we can have a chance of keeping on top of things.
16
16
  ## Making Changes
17
17
 
18
18
  * Create a topic branch from where you want to base your work.
19
- * This is usually the master branch.
19
+ * This is usually the main branch.
20
20
  * Only target release branches if you are certain your fix must be on that
21
21
  branch.
22
- * To quickly create a topic branch based on master; `git branch
23
- fix/master/my_contribution master` then checkout the new branch with `git
24
- checkout fix/master/my_contribution`. Please avoid working directly on the
25
- `master` branch.
22
+ * To quickly create a topic branch based on main; `git branch
23
+ fix/main/my_contribution main` then checkout the new branch with `git
24
+ checkout fix/main/my_contribution`. Please avoid working directly on the
25
+ `main` branch.
26
26
  * Make commits of logical units.
27
27
  * Check for unnecessary whitespace with `git diff --check` before committing.
28
28
  * Make sure your commit messages are in the proper format.
@@ -3,12 +3,17 @@
3
3
  source 'https://rubygems.org'
4
4
  git_source(:github) { |repo| "https://github.com/#{repo}.git" }
5
5
 
6
- branch = ENV.fetch('SOLIDUS_BRANCH', 'master')
6
+ branch = ENV.fetch('SOLIDUS_BRANCH', 'main')
7
7
  gem 'solidus', github: 'solidusio/solidus', branch: branch
8
8
 
9
9
  # The solidus_frontend gem has been pulled out since v3.2
10
- gem 'solidus_frontend', github: 'solidusio/solidus_frontend' if branch == 'master'
11
- gem 'solidus_frontend' if branch >= 'v3.2' # rubocop:disable Bundler/DuplicatedGem
10
+ if branch >= 'v3.2'
11
+ gem 'solidus_frontend'
12
+ elsif branch == 'main'
13
+ gem 'solidus_frontend', github: 'solidusio/solidus_frontend'
14
+ else
15
+ gem 'solidus_frontend', github: 'solidusio/solidus', branch: branch
16
+ end
12
17
 
13
18
  # Needed to help Bundler figure out how to resolve dependencies,
14
19
  # otherwise it takes forever to resolve them.
@@ -1,7 +1,7 @@
1
1
  # <%= class_name.gsub(/(?<=[^A-Z])([A-Z])/, ' \1') %>
2
2
 
3
3
  [![CircleCI](https://circleci.com/gh/<%= repo %>.svg?style=shield)](https://circleci.com/gh/<%= repo %>)
4
- [![codecov](https://codecov.io/gh/<%= repo %>/branch/master/graph/badge.svg)](https://codecov.io/gh/<%= repo %>)
4
+ [![codecov](https://codecov.io/gh/<%= repo %>/branch/main/graph/badge.svg)](https://codecov.io/gh/<%= repo %>)
5
5
 
6
6
  <!-- Explain what your extension does. -->
7
7
 
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "bundler/gem_tasks"
3
4
  require 'solidus_dev_support/rake_tasks'
4
5
  SolidusDevSupport::RakeTasks.install
5
6
 
@@ -5,48 +5,51 @@ test -z "${DEBUG+empty_string}" || set -x
5
5
 
6
6
  test "$DB" = "sqlite" && export DB="sqlite3"
7
7
 
8
- if [ -z "$SOLIDUS_BRANCH" ]
8
+ if [ -z "$PAYMENT_METHOD" ]
9
9
  then
10
- echo "~~> Use 'export SOLIDUS_BRANCH=[master|v3.2|...]' to control the Solidus branch"
11
- SOLIDUS_BRANCH="master"
10
+ PAYMENT_METHOD="none"
12
11
  fi
13
- echo "~~> Using branch $SOLIDUS_BRANCH of solidus"
14
12
 
15
- if [ -z "$SOLIDUS_FRONTEND" ]
13
+ if [ -z "$SOLIDUS_BRANCH" ]
16
14
  then
17
- echo "~~> Use 'export SOLIDUS_FRONTEND=[solidus_frontend|solidus_starter_frontend]' to control the Solidus frontend"
18
- SOLIDUS_FRONTEND="solidus_frontend"
15
+ echo "~~> Use 'export SOLIDUS_BRANCH=[main|v4.0|...]' to control the Solidus branch"
16
+ SOLIDUS_BRANCH="main"
19
17
  fi
20
- echo "~~> Using branch $SOLIDUS_FRONTEND as the solidus frontend"
18
+ echo "~~> Using branch $SOLIDUS_BRANCH of solidus"
21
19
 
22
20
  extension_name="<%= file_name %>"
23
21
 
24
22
  # Stay away from the bundler env of the containing extension.
25
23
  function unbundled {
26
- ruby -rbundler -e'b = proc {system *ARGV}; Bundler.respond_to?(:with_unbundled_env) ? Bundler.with_unbundled_env(&b) : Bundler.with_clean_env(&b)' -- $@
24
+ ruby -rbundler -e'
25
+ Bundler.with_unbundled_env {system *ARGV}' -- \
26
+ env BUNDLE_SUPPRESS_INSTALL_USING_MESSAGES=true $@
27
27
  }
28
28
 
29
+ echo "~~~> Removing the old sandbox"
29
30
  rm -rf ./sandbox
30
- unbundled bundle exec rails new sandbox \
31
+
32
+ echo "~~~> Creating a pristine Rails app"
33
+ rails new sandbox \
31
34
  --database="${DB:-sqlite3}" \
32
- --skip-bundle \
33
35
  --skip-git \
34
36
  --skip-keeps \
35
37
  --skip-rc \
36
- --skip-spring \
37
- --skip-test \
38
- --skip-javascript
38
+ --skip-bootsnap \
39
+ --skip-test
39
40
 
40
41
  if [ ! -d "sandbox" ]; then
41
42
  echo 'sandbox rails application failed'
42
43
  exit 1
43
44
  fi
44
45
 
46
+ echo "~~~> Adding solidus (with i18n) to the Gemfile"
45
47
  cd ./sandbox
46
48
  cat <<RUBY >> Gemfile
47
49
  gem 'solidus', github: 'solidusio/solidus', branch: '$SOLIDUS_BRANCH'
48
50
  gem 'rails-i18n'
49
51
  gem 'solidus_i18n'
52
+ gem 'solidus_auth_devise'
50
53
 
51
54
  gem '$extension_name', path: '..'
52
55
 
@@ -63,11 +66,6 @@ unbundled bundle exec rake db:drop db:create
63
66
 
64
67
  unbundled bundle exec rails generate solidus:install \
65
68
  --auto-accept \
66
- --user_class=Spree::User \
67
- --enforce_available_locales=true \
68
- --with-authentication=<%= file_name != 'solidus_auth_devise' %> \
69
- --payment-method=none \
70
- --frontend=${SOLIDUS_FRONTEND} \
71
69
  $@
72
70
 
73
71
  unbundled bundle exec rails generate solidus:auth:install --auto-run-migrations
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
29
29
  spec.executables = files.grep(%r{^exe/}) { |f| File.basename(f) }
30
30
  spec.require_paths = ["lib"]
31
31
 
32
- spec.add_dependency 'solidus_core', ['>= 2.0.0', '< 4']
32
+ spec.add_dependency 'solidus_core', ['>= 2.0.0', '< 5']
33
33
  spec.add_dependency 'solidus_support', '~> 0.5'
34
34
 
35
35
  spec.add_development_dependency 'solidus_dev_support', '<%= SolidusDevSupport.gem_version.approximate_recommendation %>'
@@ -8,7 +8,7 @@ module SolidusDevSupport
8
8
  module Factories
9
9
  def self.load_for(*engines)
10
10
  paths = engines.flat_map do |engine|
11
- engine.root.glob('lib/*/testing_support/factories{,.rb}')
11
+ engine.root.glob('lib/**/testing_support/factories{,.rb}')
12
12
  end.map { |path| path.sub(/.rb\z/, '').to_s }
13
13
 
14
14
  FactoryBot.definition_file_paths = [
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SolidusDevSupport
4
- VERSION = "2.6.0"
4
+ VERSION = "2.8.0"
5
5
 
6
6
  def self.gem_version
7
7
  Gem::Version.new(VERSION)
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
17
17
  spec.metadata['changelog_uri'] = 'https://github.com/solidusio/solidus_dev_support/releases'
18
18
  spec.metadata['rubygems_mfa_required'] = 'true'
19
19
 
20
- spec.required_ruby_version = '>= 2.5.0'
20
+ spec.required_ruby_version = '>= 3.0.0'
21
21
 
22
22
  # Specify which files should be added to the gem when it is released.
23
23
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
32
32
  spec.add_dependency 'capybara', '~> 3.29'
33
33
  spec.add_dependency 'capybara-screenshot', '~> 1.0'
34
34
  spec.add_dependency 'codecov', '~> 0.2'
35
- spec.add_dependency 'database_cleaner', '~> 1.7'
35
+ spec.add_dependency 'database_cleaner', ['>= 1.7', '< 3']
36
36
  spec.add_dependency 'factory_bot', '>= 4.8'
37
37
  spec.add_dependency 'factory_bot_rails'
38
38
  spec.add_dependency 'ffaker', '~> 2.13'
@@ -45,6 +45,6 @@ Gem::Specification.new do |spec|
45
45
  spec.add_dependency 'rubocop-performance', '~> 1.5'
46
46
  spec.add_dependency 'rubocop-rails', '~> 2.3'
47
47
  spec.add_dependency 'rubocop-rspec', '~> 2.0'
48
+ spec.add_dependency 'selenium-webdriver', '~> 4.11'
48
49
  spec.add_dependency 'solidus_core', ['>= 2.0', '< 5']
49
- spec.add_dependency 'webdrivers', '>= 4.4'
50
50
  end
@@ -61,7 +61,7 @@ RSpec.describe SolidusDevSupport::Extension do
61
61
  expect(subject.gemspec.description).to eq('TODO: Write a longer description or delete this line.')
62
62
  expect(subject.gemspec.license).to eq('BSD-3-Clause')
63
63
  expect(subject.gemspec.homepage).to eq("https://github.com/solidusio-contrib/solidus_my_ext#readme")
64
- expect(subject.gemspec.metadata['changelog_uri']).to eq("https://github.com/solidusio-contrib/solidus_my_ext/blob/master/CHANGELOG.md")
64
+ expect(subject.gemspec.metadata['changelog_uri']).to eq("https://github.com/solidusio-contrib/solidus_my_ext/blob/main/CHANGELOG.md")
65
65
  expect(subject.gemspec.metadata['source_code_uri']).to eq("https://github.com/solidusio-contrib/solidus_my_ext")
66
66
  end
67
67
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solidus_dev_support
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.0
4
+ version: 2.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alessandro Desantis
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-05-03 00:00:00.000000000 Z
11
+ date: 2023-12-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capybara
@@ -56,16 +56,22 @@ dependencies:
56
56
  name: database_cleaner
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - "~>"
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
61
  version: '1.7'
62
+ - - "<"
63
+ - !ruby/object:Gem::Version
64
+ version: '3'
62
65
  type: :runtime
63
66
  prerelease: false
64
67
  version_requirements: !ruby/object:Gem::Requirement
65
68
  requirements:
66
- - - "~>"
69
+ - - ">="
67
70
  - !ruby/object:Gem::Version
68
71
  version: '1.7'
72
+ - - "<"
73
+ - !ruby/object:Gem::Version
74
+ version: '3'
69
75
  - !ruby/object:Gem::Dependency
70
76
  name: factory_bot
71
77
  requirement: !ruby/object:Gem::Requirement
@@ -247,39 +253,39 @@ dependencies:
247
253
  - !ruby/object:Gem::Version
248
254
  version: '2.0'
249
255
  - !ruby/object:Gem::Dependency
250
- name: solidus_core
256
+ name: selenium-webdriver
251
257
  requirement: !ruby/object:Gem::Requirement
252
258
  requirements:
253
- - - ">="
254
- - !ruby/object:Gem::Version
255
- version: '2.0'
256
- - - "<"
259
+ - - "~>"
257
260
  - !ruby/object:Gem::Version
258
- version: '5'
261
+ version: '4.11'
259
262
  type: :runtime
260
263
  prerelease: false
261
264
  version_requirements: !ruby/object:Gem::Requirement
262
265
  requirements:
263
- - - ">="
264
- - !ruby/object:Gem::Version
265
- version: '2.0'
266
- - - "<"
266
+ - - "~>"
267
267
  - !ruby/object:Gem::Version
268
- version: '5'
268
+ version: '4.11'
269
269
  - !ruby/object:Gem::Dependency
270
- name: webdrivers
270
+ name: solidus_core
271
271
  requirement: !ruby/object:Gem::Requirement
272
272
  requirements:
273
273
  - - ">="
274
274
  - !ruby/object:Gem::Version
275
- version: '4.4'
275
+ version: '2.0'
276
+ - - "<"
277
+ - !ruby/object:Gem::Version
278
+ version: '5'
276
279
  type: :runtime
277
280
  prerelease: false
278
281
  version_requirements: !ruby/object:Gem::Requirement
279
282
  requirements:
280
283
  - - ">="
281
284
  - !ruby/object:Gem::Version
282
- version: '4.4'
285
+ version: '2.0'
286
+ - - "<"
287
+ - !ruby/object:Gem::Version
288
+ version: '5'
283
289
  description:
284
290
  email:
285
291
  - alessandrodesantis@nebulab.it
@@ -321,7 +327,7 @@ files:
321
327
  - lib/solidus_dev_support/solidus_command.rb
322
328
  - lib/solidus_dev_support/templates/extension/.circleci/config.yml
323
329
  - lib/solidus_dev_support/templates/extension/.github/stale.yml
324
- - lib/solidus_dev_support/templates/extension/CHANGELOG.md
330
+ - lib/solidus_dev_support/templates/extension/CHANGELOG.md.tt
325
331
  - lib/solidus_dev_support/templates/extension/CONTRIBUTING.md
326
332
  - lib/solidus_dev_support/templates/extension/Gemfile.tt
327
333
  - lib/solidus_dev_support/templates/extension/LICENSE
@@ -377,14 +383,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
377
383
  requirements:
378
384
  - - ">="
379
385
  - !ruby/object:Gem::Version
380
- version: 2.5.0
386
+ version: 3.0.0
381
387
  required_rubygems_version: !ruby/object:Gem::Requirement
382
388
  requirements:
383
389
  - - ">="
384
390
  - !ruby/object:Gem::Version
385
391
  version: '0'
386
392
  requirements: []
387
- rubygems_version: 3.3.7
393
+ rubygems_version: 3.5.3
388
394
  signing_key:
389
395
  specification_version: 4
390
396
  summary: Development tools for Solidus extensions.
@@ -1 +0,0 @@
1
- # Changelog