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 +4 -4
- data/.rubocop.yml +5 -0
- data/CHANGELOG.md +11 -2
- data/lib/solidus_dev_support/rake_tasks.rb +1 -0
- data/lib/solidus_dev_support/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 85a6ab192c62cc4e24367a2dc3be90d11779653bf8aa065a5079c390a19e8bc1
|
4
|
+
data.tar.gz: 839d23671a6475fbc0a67fdb2647e275debf52bbe04bffa3acffa06ccb75fd16
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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.
|
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
|
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.
|
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-
|
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
|
415
|
+
rubygems_version: 3.0.3.1
|
416
416
|
signing_key:
|
417
417
|
specification_version: 4
|
418
418
|
summary: Development tools for Solidus extensions.
|