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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2eff4626b4d3f7d779b8837725bd6c585fc3bd47
4
- data.tar.gz: 3818a4de3a68cb8f9a7cf5d62650e7da66604250
3
+ metadata.gz: 9fae2b417bddc3fd2cc6cb4a6c07212e8efb3c65
4
+ data.tar.gz: 674d279b79b45e5f72d116a64b83c1215192f805
5
5
  SHA512:
6
- metadata.gz: d8a23d14f73876ca9f47b6e5f6272df7d958c0c9f7a754438c9208d8c654e7ba5ca79ee01bdc9d06ed105045335f6a75016007dbdf9166a27fd55b6096c63d8f
7
- data.tar.gz: 54458eb117ed1d541af4208979e73f2d1f5ce7e7b8afcbaea702e024165da7c6320e67ffc4d8f82913a8e1e6efb08d29ef1ca44114bef3b09c3f2d1d7d734893
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
@@ -3,6 +3,7 @@
3
3
  /_yardoc/
4
4
  /coverage/
5
5
  /doc/
6
+ /.idea/
6
7
  /pkg/
7
8
  /spec/reports/
8
9
  /tmp/
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
- ## [Unreleased]
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
 
@@ -22,6 +22,7 @@ module FriendlyShipping
22
22
  end
23
23
 
24
24
  xml.AddressKeyFormat do
25
+ xml.ConsigneeName(location.company_name.presence || location.name)
25
26
  xml.AddressLine location.address1
26
27
  xml.AddressLine location.address2
27
28
  xml.PoliticalDivision2 location.city
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FriendlyShipping
4
- VERSION = "0.3.3"
4
+ VERSION = "0.3.4"
5
5
  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.3.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-25 00:00:00.000000000 Z
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"