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: 389395ffb560031a111e0baaba5c71d9b7f2a8ccc6ca750ea2577fb214250410
4
- data.tar.gz: a0c401f0b752a9f87dadbb44eb862f4cf43cde5e3337218f974a37333da64436
3
+ metadata.gz: 0f4ada48e2b717475858e999ee0213884dc6c7e1278c0aff52e2354fbff9dfd4
4
+ data.tar.gz: a5bc55ea29042ba0b93ad730e0535db489ce2b2a2a1c02800074e6f86590c440
5
5
  SHA512:
6
- metadata.gz: 8f85910f752ebe285a4dedc588ec00e16c934649b04a754298c907ef1c041b0dee5e86e7cd4702ca6e8bb82947e6533e13ec5043fba086fc3c71dcb4aab01db4
7
- data.tar.gz: 5fb1ae79621a936f5abd625205f1980998a7f6769851f9402d3497c2b73d5e2601aa08e0533b1e7f4fd443eecebf039796cf41ddcc3f46a9e8544ed6f39d57b0
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] - 2019-01-10
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.3.0...HEAD
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
- Dir["#{file_name}/bin/*"].each do |executable|
26
- make_executable executable
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"
@@ -3,4 +3,5 @@
3
3
  require 'solidus_core'
4
4
  require 'solidus_support'
5
5
 
6
+ require '<%=file_name%>/version'
6
7
  require '<%=file_name%>/engine'
@@ -1,14 +1,2 @@
1
1
  require:
2
2
  - solidus_dev_support/rubocop
3
-
4
- inherit_gem:
5
- solidus_dev_support: .rubocop.yml
6
-
7
- AllCops:
8
- Exclude:
9
- - spec/dummy/**/*
10
- - vendor/**/*
11
-
12
- Rails/SkipsModelValidations:
13
- Exclude:
14
- - db/migrate/**/*
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SolidusDevSupport
4
- VERSION = "0.4.0"
4
+ VERSION = "0.4.1"
5
5
  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: 0.4.0
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-10 00:00:00.000000000 Z
11
+ date: 2020-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: apparition