workarea-gift_cards 4.0.0.beta.1 → 4.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/README.md +1 -1
- data/Rakefile +4 -4
- data/lib/workarea/gift_cards/version.rb +1 -1
- data/test/models/workarea/fulfillment/policies/create_gift_card_test.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e7ddc803fd7cbb1fe5bdbaa319bc368e427320a91face1c15089a50852494b10
|
4
|
+
data.tar.gz: 52375b8456721e89d15b6936d55e4c924048e2f3269f1204068bcf6818703d77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e52be36398f36feba10fc03756716fdba06ca19990f35631057abce5cc1fde0ff9a5f7bf3d896ab8e79670be0f74e52148a4fdc17188da4293e568ed363c5e32
|
7
|
+
data.tar.gz: 4c471d25f8a0b25e4ebc8656a0b279417a95228578d169d2a6219442cbbf81fce34e419987e1161635b3def7669f75c5f9412fcfe1d5a74428d42382bddb77b0
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,23 @@
|
|
1
|
+
Workarea Gift Cards 4.0.0 (2019-11-26)
|
2
|
+
--------------------------------------------------------------------------------
|
3
|
+
|
4
|
+
* Update README
|
5
|
+
|
6
|
+
Curt Howard
|
7
|
+
|
8
|
+
|
9
|
+
|
10
|
+
Workarea Gift Cards 3.4.7 (2019-09-04)
|
11
|
+
--------------------------------------------------------------------------------
|
12
|
+
|
13
|
+
* Always Use Configured Currency For Default Values (#1)
|
14
|
+
|
15
|
+
When specifying a `default:` for a Mongoid `Money` field, use an Integer
|
16
|
+
type like `0` instead of converting it to a Money type, as this will get
|
17
|
+
evaluated at compile-time rather than at runtime. Doing so preserves
|
18
|
+
the currency configuration specified by the application at runtime.
|
19
|
+
|
20
|
+
|
1
21
|
Workarea Gift Cards 3.4.6 (2019-08-21)
|
2
22
|
--------------------------------------------------------------------------------
|
3
23
|
|
data/README.md
CHANGED
@@ -111,7 +111,7 @@ Note that it is set to a string of the class constant, and not an instance of th
|
|
111
111
|
Workarea Commerce Documentation
|
112
112
|
--------------------------------------------------------------------------------
|
113
113
|
|
114
|
-
See [https://developer.workarea.com](https://developer.workarea.com) for Workarea Commerce documentation
|
114
|
+
See [https://developer.workarea.com](https://developer.workarea.com) for Workarea Commerce documentation
|
115
115
|
|
116
116
|
License
|
117
117
|
--------------------------------------------------------------------------------
|
data/Rakefile
CHANGED
@@ -38,10 +38,10 @@ desc "Release version #{Workarea::GiftCards::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
|
-
|
41
|
+
Rake::Task['workarea:changelog'].execute
|
42
|
+
system 'git add CHANGELOG.md'
|
43
|
+
system 'git commit -m "Update CHANGELOG"'
|
44
|
+
system 'git push origin HEAD'
|
45
45
|
|
46
46
|
system "git tag -a v#{Workarea::GiftCards::VERSION} -m 'Tagging #{Workarea::GiftCards::VERSION}'"
|
47
47
|
system 'git push --tags'
|
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.0
|
4
|
+
version: 4.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- bcrouse
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-11-
|
11
|
+
date: 2019-11-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: workarea
|
@@ -220,9 +220,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
220
220
|
version: 2.3.0
|
221
221
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
222
222
|
requirements:
|
223
|
-
- - "
|
223
|
+
- - ">="
|
224
224
|
- !ruby/object:Gem::Version
|
225
|
-
version:
|
225
|
+
version: '0'
|
226
226
|
requirements: []
|
227
227
|
rubygems_version: 3.0.6
|
228
228
|
signing_key:
|