friendly_shipping 0.3.3 → 0.3.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.
- checksums.yaml +4 -4
- data/.env.template +11 -0
- data/.gitignore +1 -0
- data/CHANGELOG.md +4 -1
- data/lib/friendly_shipping/services/ups/serialize_address_validation_request.rb +1 -0
- data/lib/friendly_shipping/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9fae2b417bddc3fd2cc6cb4a6c07212e8efb3c65
|
|
4
|
+
data.tar.gz: 674d279b79b45e5f72d116a64b83c1215192f805
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bdf22d97688944e2cd7d0c68ee896e3c41ab15abe27129398cd257dbd89b8dfa601e11f7fb44e5de330d57660580fec577f7ac74acb8f35984c9ce399e4d4fa7
|
|
7
|
+
data.tar.gz: 52ce6aedde1900838fda5e9d16feffd5a4c911de78fbed324485f20f2d9c906ecda6f1c6a03037292e1a0a625307fab8b5750fe2b9dea3273a82591f5da6a225
|
data/.env.template
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# .env.template
|
|
2
|
+
# NO PASSWORDS OR SENSITIVE INFORMATION SHOULD BE STORED HERE
|
|
3
|
+
# Only pass along how those passwords/info are reference via ENV VARS
|
|
4
|
+
|
|
5
|
+
SHIPENGINE_API_KEY=Ship Engine API key
|
|
6
|
+
|
|
7
|
+
UPS_KEY=UPS API access key
|
|
8
|
+
UPS_LOGIN=UPS login name
|
|
9
|
+
UPS_PASSWORD=UPS login password
|
|
10
|
+
|
|
11
|
+
USPS_LOGIN=USPS login name
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,10 @@ 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
|
-
## [
|
|
7
|
+
## [0.3.4] - 2017-10-28
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- Add ConsigneeName to Address validation/classification request
|
|
8
11
|
|
|
9
12
|
## [0.3.3] - 2017-10-25
|
|
10
13
|
|
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.3.
|
|
4
|
+
version: 0.3.4
|
|
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-10-
|
|
11
|
+
date: 2019-10-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: data_uri
|
|
@@ -144,6 +144,7 @@ extensions: []
|
|
|
144
144
|
extra_rdoc_files: []
|
|
145
145
|
files:
|
|
146
146
|
- ".circleci/config.yml"
|
|
147
|
+
- ".env.template"
|
|
147
148
|
- ".gitignore"
|
|
148
149
|
- ".rspec"
|
|
149
150
|
- ".rubocop-relaxed.yml"
|