solidus_dev_support 2.5.3 → 2.5.4

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: aca5f58a3e39d6a6e6dcac45c538fc7963bc059eac65b4d8127c3a8a29a4740b
4
- data.tar.gz: d868457dd1c63018a4f94bac62cac24897efe3bc5c478878cf00d52f67e59e00
3
+ metadata.gz: 85a6ab192c62cc4e24367a2dc3be90d11779653bf8aa065a5079c390a19e8bc1
4
+ data.tar.gz: 839d23671a6475fbc0a67fdb2647e275debf52bbe04bffa3acffa06ccb75fd16
5
5
  SHA512:
6
- metadata.gz: 9755aa55ac8beab16aacdea85f5bbe6a9b020c49aecca8ff761ff82bb8328f480964525e5d236a1bc2a43ee3cc244e7823c1b4fe6efbebf02934b7b49b8b9c71
7
- data.tar.gz: 71ea3d512238276d23ff582febe5233eb5dd090e06857b9584386a50c5ebf2736d6179af49b39dd0fac530996d0d094768ef61313db648844df3df08829ec3d1
6
+ metadata.gz: a872cd08b37f12b1fdad990c97bfa943a12f8ea86948fd5f28aea51e5f6d8f11e399049e26e78138caf2dd0ca218b363020940d7eff3b9e53a6b74230996537c
7
+ data.tar.gz: 03d5230592262f2027272467ff7c5f866ef8943c590710b476fafa45b21c10e1faf0f4b58c209334e06148caf979e2bd50be4aab438e46d67341fa3de0499a56
data/.rubocop.yml CHANGED
@@ -36,6 +36,11 @@ Style/RedundantRegexpEscape:
36
36
  Style/SlicingWithRange:
37
37
  Enabled: true
38
38
 
39
+ # Disable this cop until this isssue gets a clear answer:
40
+ # https://github.com/rubocop/rubocop/issues/10675
41
+ Gemspec/DeprecatedAttributeAssignment:
42
+ Enabled: false
43
+
39
44
  AllCops:
40
45
  TargetRubyVersion: 2.5
41
46
  Exclude:
data/CHANGELOG.md CHANGED
@@ -1,8 +1,17 @@
1
1
  # Changelog
2
2
 
3
- ## [2.5.2](https://github.com/solidusio/solidus_dev_support/tree/2.5.2) (2021-11-23)
3
+ ## [2.5.4](https://github.com/solidusio/solidus_dev_support/tree/2.5.4) (2022-05-31)
4
4
 
5
- [Full Changelog](https://github.com/solidusio/solidus_dev_support/compare/v2.5.1...2.5.2)
5
+ [Full Changelog](https://github.com/solidusio/solidus_dev_support/compare/v2.5.2...2.5.4)
6
+
7
+ **Fixed bugs:**
8
+
9
+ - Add a missing require for octokit/repository [\#185](https://github.com/solidusio/solidus_dev_support/pull/185) ([elia](https://github.com/elia))
10
+ - Fix window resizing of `solidus_chrome_headless` driver [\#184](https://github.com/solidusio/solidus_dev_support/pull/184) ([gsmendoza](https://github.com/gsmendoza))
11
+
12
+ ## [v2.5.2](https://github.com/solidusio/solidus_dev_support/tree/v2.5.2) (2021-11-23)
13
+
14
+ [Full Changelog](https://github.com/solidusio/solidus_dev_support/compare/v2.5.1...v2.5.2)
6
15
 
7
16
  **Merged pull requests:**
8
17
 
@@ -78,6 +78,7 @@ module SolidusDevSupport
78
78
 
79
79
  GitHubChangelogGenerator::RakeTask.new(:changelog) do |config|
80
80
  require 'octokit'
81
+ require 'octokit/repository'
81
82
  repo = Octokit::Repository.from_url(gemspec.metadata['source_code_uri'] || gemspec.homepage)
82
83
 
83
84
  config.user = repo.owner
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SolidusDevSupport
4
- VERSION = "2.5.3"
4
+ VERSION = "2.5.4"
5
5
 
6
6
  def self.gem_version
7
7
  Gem::Version.new(VERSION)
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.5.3
4
+ version: 2.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alessandro Desantis
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-05-27 00:00:00.000000000 Z
11
+ date: 2022-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capybara
@@ -412,7 +412,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
412
412
  - !ruby/object:Gem::Version
413
413
  version: '0'
414
414
  requirements: []
415
- rubygems_version: 3.1.6
415
+ rubygems_version: 3.0.3.1
416
416
  signing_key:
417
417
  specification_version: 4
418
418
  summary: Development tools for Solidus extensions.