solidus_dev_support 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0f4ada48e2b717475858e999ee0213884dc6c7e1278c0aff52e2354fbff9dfd4
|
|
4
|
+
data.tar.gz: a5bc55ea29042ba0b93ad730e0535db489ce2b2a2a1c02800074e6f86590c440
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8e6c316d2fc4adb87df988951edf3566f1badb89944ed345becc1e509cd369f7c875bd7fc8d2f03038a1459c93000cf27f661103d2a8c8b158e4fbe57f475c41
|
|
7
|
+
data.tar.gz: 7f26dab435fd9cc08982bae324a162fe14e2bcb388d0998cf29bbc1e27e68f749e688fe49065186a0c4169a4a8a0e36d5aa51c546d465f25c1b3ad490b3124c8
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Fixed the generated RuboCop config inheriting from this gem's dev-only config
|
|
13
|
+
- Fixed the generated extension not requiring the `version` file
|
|
14
|
+
|
|
15
|
+
## [0.4.0] - 2020-01-10
|
|
16
|
+
|
|
10
17
|
### Added
|
|
11
18
|
|
|
12
19
|
- Enforced Rails version depending on the Solidus version in generated Gemfile
|
|
@@ -29,7 +36,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
29
36
|
- Removed the `-v` option from the `solidus` executable
|
|
30
37
|
- Removed the factory_bot gem from the Gemfile
|
|
31
38
|
|
|
32
|
-
## [0.3.0] -
|
|
39
|
+
## [0.3.0] - 2020-01-10
|
|
33
40
|
|
|
34
41
|
### Added
|
|
35
42
|
|
|
@@ -80,7 +87,8 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
80
87
|
|
|
81
88
|
Initial release.
|
|
82
89
|
|
|
83
|
-
[Unreleased]: https://github.com/solidusio-contrib/solidus_dev_support/compare/v0.
|
|
90
|
+
[Unreleased]: https://github.com/solidusio-contrib/solidus_dev_support/compare/v0.4.0...HEAD
|
|
91
|
+
[0.4.0]: https://github.com/solidusio-contrib/solidus_dev_support/compare/v0.3.0...v0.4.0
|
|
84
92
|
[0.3.0]: https://github.com/solidusio-contrib/solidus_dev_support/compare/v0.2.0...v0.3.0
|
|
85
93
|
[0.2.0]: https://github.com/solidusio-contrib/solidus_dev_support/compare/v0.1.1...v0.2.0
|
|
86
94
|
[0.1.1]: https://github.com/solidusio-contrib/solidus_dev_support/compare/v0.1.0...v0.1.1
|
|
@@ -22,8 +22,13 @@ module SolidusDevSupport
|
|
|
22
22
|
directory '.circleci', "#{path}/.circleci"
|
|
23
23
|
directory '.github', "#{path}/.github"
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
%w[
|
|
26
|
+
bin/console
|
|
27
|
+
bin/rails
|
|
28
|
+
bin/setup
|
|
29
|
+
].each do |bin|
|
|
30
|
+
template bin, "#{path}/#{bin}"
|
|
31
|
+
make_executable "#{path}/#{bin}"
|
|
27
32
|
end
|
|
28
33
|
|
|
29
34
|
template 'extension.gemspec.erb', "#{path}/#{file_name}.gemspec"
|
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: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alessandro Desantis
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-01-
|
|
11
|
+
date: 2020-01-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: apparition
|