google4r-checkout 1.1.3 → 1.1.4
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.
- data/CHANGES +4 -0
- data/lib/google4r/checkout/notifications.rb +3 -0
- metadata +3 -2
data/CHANGES
CHANGED
|
@@ -647,6 +647,7 @@ module Google4R #:nodoc:
|
|
|
647
647
|
# ShippingAdjustments represent the chosen shipping method.
|
|
648
648
|
class ShippingAdjustment
|
|
649
649
|
MERCHANT_CALCULATED = "MERCHANT_CALCULATED".freeze
|
|
650
|
+
CARRIER_CALCULATED = "CARRIER_CALCULATED".freeze
|
|
650
651
|
FLAT_RATE = "FLAT_RATE".freeze
|
|
651
652
|
PICKUP = "PICKUP".freeze
|
|
652
653
|
|
|
@@ -674,6 +675,8 @@ module Google4R #:nodoc:
|
|
|
674
675
|
PICKUP
|
|
675
676
|
when 'merchant-calculated-shipping-adjustment' then
|
|
676
677
|
MERCHANT_CALCULATED
|
|
678
|
+
when 'carrier-calculated-shipping-adjustment' then
|
|
679
|
+
CARRIER_CALCULATED
|
|
677
680
|
else
|
|
678
681
|
raise "Unexpected shipping adjustment '#{element.name}'"
|
|
679
682
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google4r-checkout
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.4
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -18,7 +18,7 @@ authors:
|
|
|
18
18
|
autorequire:
|
|
19
19
|
bindir: bin
|
|
20
20
|
cert_chain: []
|
|
21
|
-
date: 2012-07-
|
|
21
|
+
date: 2012-07-31 00:00:00.000000000 Z
|
|
22
22
|
dependencies:
|
|
23
23
|
- !ruby/object:Gem::Dependency
|
|
24
24
|
name: money
|
|
@@ -262,3 +262,4 @@ test_files:
|
|
|
262
262
|
- test/unit/us_zip_area_test.rb
|
|
263
263
|
- test/unit/world_area_test.rb
|
|
264
264
|
- test/test_helper.rb
|
|
265
|
+
has_rdoc:
|