solidus_dev_support 0.4.1 → 0.5.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: 0f4ada48e2b717475858e999ee0213884dc6c7e1278c0aff52e2354fbff9dfd4
4
- data.tar.gz: a5bc55ea29042ba0b93ad730e0535db489ce2b2a2a1c02800074e6f86590c440
3
+ metadata.gz: 22dbc17966230ac110fc0129505cbda25986817faa51629c7b0a68455dc893f5
4
+ data.tar.gz: edd55039b0d7d67f84ef65ef20979e935c3705cd599e5a9b88f1f388f6d6b070
5
5
  SHA512:
6
- metadata.gz: 8e6c316d2fc4adb87df988951edf3566f1badb89944ed345becc1e509cd369f7c875bd7fc8d2f03038a1459c93000cf27f661103d2a8c8b158e4fbe57f475c41
7
- data.tar.gz: 7f26dab435fd9cc08982bae324a162fe14e2bcb388d0998cf29bbc1e27e68f749e688fe49065186a0c4169a4a8a0e36d5aa51c546d465f25c1b3ad490b3124c8
6
+ metadata.gz: 8ce7fb47313fa68bcd1a3d53244cf45f878f164d0cf3d4f4a637326d9ffd11b4762c9a8b4baa0268e9303ad3b8ee7fd6d2a217b1a0b30783e22e37e64d2bb88f
7
+ data.tar.gz: 2b4e414288b002b2ad832a5284632ae819fd54e04ac8a870993ceb2bd1dc427b2f6736554963259f1e73e4de5aceb05d6d9a5931928a030f3ba3405c86e78093
@@ -0,0 +1,5 @@
1
+ bump:
2
+ recurse: false
3
+ file: 'lib/solidus_dev_support/version.rb'
4
+ message: Bump SolidusDevSupport to %{version}
5
+ tag: true
@@ -7,10 +7,27 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.5.0] - 2020-01-16
11
+
12
+ ### Added
13
+
14
+ - Added `--require spec_helper` to the generated `.rspec`
15
+
16
+ ### Fixed
17
+
18
+ - Replaced "Spree" with "Solidus" in the license of generated extensions
19
+
20
+ ### Changed
21
+
22
+ - Updated gem-release to use tags instead of branches for new releases
23
+
24
+ ## [0.4.1] - 2020-01-15
25
+
10
26
  ### Fixed
11
27
 
12
28
  - Fixed the generated RuboCop config inheriting from this gem's dev-only config
13
29
  - Fixed the generated extension not requiring the `version` file
30
+ - Fixed the generator not properly marking `bin/` files as executable
14
31
 
15
32
  ## [0.4.0] - 2020-01-10
16
33
 
@@ -87,9 +104,11 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
87
104
 
88
105
  Initial release.
89
106
 
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
92
- [0.3.0]: https://github.com/solidusio-contrib/solidus_dev_support/compare/v0.2.0...v0.3.0
93
- [0.2.0]: https://github.com/solidusio-contrib/solidus_dev_support/compare/v0.1.1...v0.2.0
94
- [0.1.1]: https://github.com/solidusio-contrib/solidus_dev_support/compare/v0.1.0...v0.1.1
95
- [0.1.0]: https://github.com/solidusio-contrib/solidus_dev_support/releases/tag/v0.1.0
107
+ [Unreleased]: https://github.com/solidusio/solidus_dev_support/compare/v0.5.0...HEAD
108
+ [0.5.0]: https://github.com/solidusio/solidus_dev_support/compare/v0.4.1...v0.5.0
109
+ [0.4.1]: https://github.com/solidusio/solidus_dev_support/compare/v0.4.0...v0.4.1
110
+ [0.4.0]: https://github.com/solidusio/solidus_dev_support/compare/v0.3.0...v0.4.0
111
+ [0.3.0]: https://github.com/solidusio/solidus_dev_support/compare/v0.2.0...v0.3.0
112
+ [0.2.0]: https://github.com/solidusio/solidus_dev_support/compare/v0.1.1...v0.2.0
113
+ [0.1.1]: https://github.com/solidusio/solidus_dev_support/compare/v0.1.0...v0.1.1
114
+ [0.1.0]: https://github.com/solidusio/solidus_dev_support/releases/tag/v0.1.0
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # solidus_dev_support
2
2
 
3
- [![CircleCI](https://circleci.com/gh/solidusio-contrib/solidus_dev_support.svg?style=svg)](https://circleci.com/gh/solidusio-contrib/solidus_dev_support)
3
+ [![CircleCI](https://circleci.com/gh/solidusio/solidus_dev_support.svg?style=svg)](https://circleci.com/gh/solidusio/solidus_dev_support)
4
4
 
5
5
  This gem contains common development functionality for Solidus extensions.
6
6
 
@@ -9,7 +9,7 @@ are permitted provided that the following conditions are met:
9
9
  * Redistributions in binary form must reproduce the above copyright notice,
10
10
  this list of conditions and the following disclaimer in the documentation
11
11
  and/or other materials provided with the distribution.
12
- * Neither the name Spree nor the names of its contributors may be used to
12
+ * Neither the name Solidus nor the names of its contributors may be used to
13
13
  endorse or promote products derived from this software without specific
14
14
  prior written permission.
15
15
 
@@ -2,4 +2,4 @@ bump:
2
2
  recurse: false
3
3
  file: 'lib/<%=file_name%>/version.rb'
4
4
  message: Bump <%=class_name%> to %{version}
5
- branch: true
5
+ tag: true
@@ -1 +1,2 @@
1
- --color
1
+ --color
2
+ --require spec_helper
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SolidusDevSupport
4
- VERSION = "0.4.1"
4
+ VERSION = "0.5.0"
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.1
4
+ version: 0.5.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: 2020-01-15 00:00:00.000000000 Z
11
+ date: 2020-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: apparition
@@ -291,6 +291,7 @@ extensions: []
291
291
  extra_rdoc_files: []
292
292
  files:
293
293
  - ".circleci/config.yml"
294
+ - ".gem_release.yml"
294
295
  - ".github/PULL_REQUEST_TEMPLATE.md"
295
296
  - ".github/stale.yml"
296
297
  - ".gitignore"