solidus_dev_support 1.0.0 → 1.0.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 +4 -4
- data/CHANGELOG.md +10 -2
- data/lib/solidus_dev_support/rspec/rails_helper.rb +3 -1
- data/lib/solidus_dev_support/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f56dae194c8b778da9182c440ef9e3114dd3fc85f95884199c4809eda2d902e3
|
|
4
|
+
data.tar.gz: e8b766266ff7d54e13f706fb0a57682cb4578f834b79ef50d89b401ae1728304
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0db6603ab2abbda31d662be42a9195031a4e6f810e16d4735942189593ac3cae15c526e962f5162a0efb2b5f4412df6f446da6379e03c9e4753fcaf6a73ad75f
|
|
7
|
+
data.tar.gz: ecffb2ae71fc3188152defc95d8cf0ca3a9a1a26472bc5d6195aa3593e63bdb0804e09be1fa49a9d5d042917a9302c49e968d04d2d7b11dc1679e7a823e44733
|
data/CHANGELOG.md
CHANGED
|
@@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project
|
|
6
6
|
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
## [
|
|
8
|
+
## [1.0.1] - 2020-02-17
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Fixed missing factory definitions when using `modify` on Solidus factories
|
|
13
|
+
|
|
14
|
+
## [1.0.0] - 2020-02-07
|
|
9
15
|
|
|
10
16
|
### Added
|
|
11
17
|
|
|
@@ -130,7 +136,9 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
130
136
|
|
|
131
137
|
Initial release.
|
|
132
138
|
|
|
133
|
-
[Unreleased]: https://github.com/solidusio/solidus_dev_support/compare/
|
|
139
|
+
[Unreleased]: https://github.com/solidusio/solidus_dev_support/compare/v1.0.1...HEAD
|
|
140
|
+
[1.0.1]: https://github.com/solidusio/solidus_dev_support/compare/v1.0.0...v1.0.1
|
|
141
|
+
[1.0.0]: https://github.com/solidusio/solidus_dev_support/compare/v0.6.0...v1.0.0
|
|
134
142
|
[0.6.0]: https://github.com/solidusio/solidus_dev_support/compare/v0.5.0...v0.6.0
|
|
135
143
|
[0.5.0]: https://github.com/solidusio/solidus_dev_support/compare/v0.4.1...v0.5.0
|
|
136
144
|
[0.4.1]: https://github.com/solidusio/solidus_dev_support/compare/v0.4.0...v0.4.1
|
|
@@ -12,7 +12,7 @@ require 'solidus_dev_support'
|
|
|
12
12
|
|
|
13
13
|
require 'rspec/rails'
|
|
14
14
|
require 'database_cleaner'
|
|
15
|
-
require '
|
|
15
|
+
require 'factory_bot'
|
|
16
16
|
require 'ffaker'
|
|
17
17
|
|
|
18
18
|
require 'spree/testing_support/authorization_helpers'
|
|
@@ -22,6 +22,8 @@ require 'spree/testing_support/preferences'
|
|
|
22
22
|
require 'spree/testing_support/controller_requests'
|
|
23
23
|
require 'solidus_dev_support/testing_support/preferences'
|
|
24
24
|
|
|
25
|
+
FactoryBot.find_definitions
|
|
26
|
+
|
|
25
27
|
RSpec.configure do |config|
|
|
26
28
|
config.infer_spec_type_from_file_location!
|
|
27
29
|
|
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: 1.0.
|
|
4
|
+
version: 1.0.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-02-
|
|
11
|
+
date: 2020-02-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: apparition
|