friendly_shipping 0.4.1 → 0.4.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ea451610e13a57cf5515da031454c29350f88fe5
|
4
|
+
data.tar.gz: 448c153d99953e67528b94ad8bc7807c5a3b26f7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 509d6772349fdaac8ba0c35251466bd7d2e08f029ae92ac19acf47987518138ed0f97637d9c45f2caf99fea6ff8e9615798e35c063350673ada20f436a0ec784
|
7
|
+
data.tar.gz: f020a36ab7693c073b5f4949bd02bff7ab9ab450347a8eda729cac3d8e974e05f6520936d705ef71a282fcf0783715b8c61df37e255e31971a8dded64a29a4c6
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
|
+
## [0.4.2] - 2019-11-19
|
8
|
+
|
9
|
+
### Changed
|
10
|
+
- UPS Freight: Pass TimeInTransitIndicator as a String rather than a Boolean
|
11
|
+
|
12
|
+
## [0.4.1] - 2019-11-15
|
13
|
+
|
14
|
+
### Changed
|
15
|
+
- Bugfix release: The file `types.rb`, which was accidentally put into `spec`, was moved to `lib`.
|
16
|
+
|
7
17
|
## [0.4.0] - 2019-11-11
|
8
18
|
|
9
19
|
### Added
|
@@ -19,7 +19,7 @@ module FriendlyShipping
|
|
19
19
|
Code: options.shipping_method.service_code
|
20
20
|
},
|
21
21
|
Commodity: options.commodity_information_generator.call(shipment: shipment, options: options),
|
22
|
-
TimeInTransitIndicator: true
|
22
|
+
TimeInTransitIndicator: 'true'
|
23
23
|
}.compact.merge(handling_units(shipment, options).reduce(&:merge).to_h)
|
24
24
|
}
|
25
25
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: friendly_shipping
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Martin Meyerhoff
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-11-
|
11
|
+
date: 2019-11-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: data_uri
|