workarea-wish_lists 3.0.4 → 3.0.5
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: c2a0cc205fea571704b4ce49a9259dc6e54f79c9f5a9a5cfdee0f9766b8f6f18
|
|
4
|
+
data.tar.gz: 00fe354136534a94be79aa0eb3d18d12a86c3317bf2b7ea8cfc2981cc66e540a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 592d3ddd2066ad1a484cadfe357907a0dd53293207d34ca5af98b01c8fb6e5bf910bdb6e1dc54f7e676852c3f9e7486c30233dcca8ac51c7994933dc817524ef
|
|
7
|
+
data.tar.gz: f0e6be8eb3bc9ef8b42b88bd71e893081257bb3715ff07e225af58a70306385f6aad0b4d4a6d0b28d915a1948bb647adf485a0216043331f77ea7b5be49ba3a3
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
Workarea Wish Lists 3.0.5 (2020-10-22)
|
|
2
|
+
--------------------------------------------------------------------------------
|
|
3
|
+
|
|
4
|
+
* Fix typo to filename for WishListUserViewModelTest
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
Basia
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
1
11
|
Workarea Wish Lists 3.0.4 (2019-08-21)
|
|
2
12
|
--------------------------------------------------------------------------------
|
|
3
13
|
|
data/Rakefile
CHANGED
|
@@ -38,13 +38,12 @@ desc "Release version #{Workarea::WishLists::VERSION} of the gem"
|
|
|
38
38
|
task :release do
|
|
39
39
|
host = "https://#{ENV['BUNDLE_GEMS__WEBLINC__COM']}@gems.weblinc.com"
|
|
40
40
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
#system 'git push origin HEAD'
|
|
41
|
+
Rake::Task['workarea:changelog'].execute
|
|
42
|
+
system 'git add CHANGELOG.md'
|
|
43
|
+
system 'git commit -m "Update CHANGELOG"'
|
|
45
44
|
|
|
46
45
|
system "git tag -a v#{Workarea::WishLists::VERSION} -m 'Tagging #{Workarea::WishLists::VERSION}'"
|
|
47
|
-
system 'git push --tags'
|
|
46
|
+
system 'git push origin HEAD --follow-tags'
|
|
48
47
|
|
|
49
48
|
system 'gem build workarea-wish_lists.gemspec'
|
|
50
49
|
system "gem push workarea-wish_lists-#{Workarea::WishLists::VERSION}.gem"
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: workarea-wish_lists
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- bcrouse
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-10-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: workarea
|
|
@@ -157,8 +157,8 @@ files:
|
|
|
157
157
|
- test/system/workarea/admin/wish_lists_system_test.rb
|
|
158
158
|
- test/system/workarea/storefront/wish_lists_system_test.rb
|
|
159
159
|
- test/test_helper.rb
|
|
160
|
-
- test/view_models/workarea/storefront/user_view_model_test.rb
|
|
161
160
|
- test/view_models/workarea/storefront/wish_list_item_view_model_test.rb
|
|
161
|
+
- test/view_models/workarea/storefront/wish_list_user_view_model_test.rb
|
|
162
162
|
- test/view_models/workarea/storefront/wish_list_view_model_test.rb
|
|
163
163
|
- test/workers/workarea/mark_wish_list_items_purchased_test.rb
|
|
164
164
|
- workarea-wish_lists.gemspec
|
|
@@ -181,7 +181,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
181
181
|
- !ruby/object:Gem::Version
|
|
182
182
|
version: '0'
|
|
183
183
|
requirements: []
|
|
184
|
-
rubygems_version: 3.0.
|
|
184
|
+
rubygems_version: 3.0.3
|
|
185
185
|
signing_key:
|
|
186
186
|
specification_version: 4
|
|
187
187
|
summary: Wish Lists plugin for the Workarea ecommerce platform
|