workarea-gift_cards 4.0.0 → 4.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 +22 -1
- data/Gemfile +1 -1
- data/Rakefile +1 -2
- data/lib/workarea/gift_cards/version.rb +1 -1
- data/test/integration/workarea/storefront/checkout_gift_cards_integration_test.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e21e9f375d3a8d317fb1f1f459fea084ed8bee0eb41cd014529c8b981a014a9d
|
|
4
|
+
data.tar.gz: a81d46c51ab652f971644dd611b8a75cf4d2480b4377be2b77972f840d2e11c2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cabbf79354fa21b86f39c999dbae52c178663b9961ec70195268161a3d57f328cfd7b85c62d10d98b01247b63e3b389e45b7c450326b039a575a373b99e62ac8
|
|
7
|
+
data.tar.gz: 29e5afd10c155021d8c2c054eac994b8e0f2738867042af13c0804dbde115e6b6d3e661169785a216b64255ef4fe6cd1a9197ad2a15e10e97fcd9abb0911d6e8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,28 @@
|
|
|
1
|
+
Workarea Gift Cards 4.0.1 (2020-01-21)
|
|
2
|
+
--------------------------------------------------------------------------------
|
|
3
|
+
|
|
4
|
+
* Fix Tests for 2020
|
|
5
|
+
|
|
6
|
+
Update all tests so that they no longer depend on the year 2020 as an
|
|
7
|
+
expiration year. Instead, use the method provided by Workarea.
|
|
8
|
+
|
|
9
|
+
GIFTCARDS-6
|
|
10
|
+
Tom Scott
|
|
11
|
+
|
|
12
|
+
* Fix Tests for 2020
|
|
13
|
+
|
|
14
|
+
Update all tests so that they no longer depend on the year 2020 as an
|
|
15
|
+
expiration year. Instead, use the method provided by Workarea.
|
|
16
|
+
|
|
17
|
+
GIFTCARDS-6
|
|
18
|
+
Tom Scott
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
1
22
|
Workarea Gift Cards 4.0.0 (2019-11-26)
|
|
2
23
|
--------------------------------------------------------------------------------
|
|
3
24
|
|
|
4
|
-
*
|
|
25
|
+
* Use custom fulfillment policy for digital gift card generation
|
|
5
26
|
|
|
6
27
|
Curt Howard
|
|
7
28
|
|
data/Gemfile
CHANGED
data/Rakefile
CHANGED
|
@@ -41,10 +41,9 @@ task :release do
|
|
|
41
41
|
Rake::Task['workarea:changelog'].execute
|
|
42
42
|
system 'git add CHANGELOG.md'
|
|
43
43
|
system 'git commit -m "Update CHANGELOG"'
|
|
44
|
-
system 'git push origin HEAD'
|
|
45
44
|
|
|
46
45
|
system "git tag -a v#{Workarea::GiftCards::VERSION} -m 'Tagging #{Workarea::GiftCards::VERSION}'"
|
|
47
|
-
system 'git push --tags'
|
|
46
|
+
system 'git push origin HEAD --follow-tags'
|
|
48
47
|
|
|
49
48
|
system 'gem build workarea-gift_cards.gemspec'
|
|
50
49
|
system "gem push workarea-gift_cards-#{Workarea::GiftCards::VERSION}.gem"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: workarea-gift_cards
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.1
|
|
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-01-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: workarea
|
|
@@ -224,7 +224,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
224
224
|
- !ruby/object:Gem::Version
|
|
225
225
|
version: '0'
|
|
226
226
|
requirements: []
|
|
227
|
-
rubygems_version: 3.0.
|
|
227
|
+
rubygems_version: 3.0.3
|
|
228
228
|
signing_key:
|
|
229
229
|
specification_version: 4
|
|
230
230
|
summary: Gift Cards plugin for the Workarea Commerce Platform
|