pbshipping 1.0.0
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 +7 -0
- data/LICENSE +20 -0
- data/README.md +185 -0
- data/lib/pbshipping.rb +173 -0
- data/lib/pbshipping/account.rb +45 -0
- data/lib/pbshipping/address.rb +55 -0
- data/lib/pbshipping/api_object.rb +131 -0
- data/lib/pbshipping/api_resource.rb +22 -0
- data/lib/pbshipping/authentication.rb +36 -0
- data/lib/pbshipping/carrier.rb +53 -0
- data/lib/pbshipping/country.rb +22 -0
- data/lib/pbshipping/customs.rb +26 -0
- data/lib/pbshipping/developer.rb +120 -0
- data/lib/pbshipping/error.rb +73 -0
- data/lib/pbshipping/manifest.rb +130 -0
- data/lib/pbshipping/merchant.rb +22 -0
- data/lib/pbshipping/parcel.rb +26 -0
- data/lib/pbshipping/rate.rb +32 -0
- data/lib/pbshipping/scandetails.rb +22 -0
- data/lib/pbshipping/shipment.rb +185 -0
- data/lib/pbshipping/shipping_api_resource.rb +26 -0
- data/lib/pbshipping/tracking.rb +53 -0
- data/lib/pbshipping/transactiondetails.rb +22 -0
- data/lib/pbshipping/version.rb +3 -0
- data/test/tc_address.rb +46 -0
- data/test/tc_manifest.rb +69 -0
- data/test/tc_merchant.rb +44 -0
- data/test/tc_shipment.rb +89 -0
- data/test/tc_transactionreport.rb +93 -0
- data/test/test_util.rb +222 -0
- data/test/ts_all_tests.rb +21 -0
- data/tutorial.rb +464 -0
- metadata +96 -0
metadata
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pbshipping
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Pitney Bowes Shipping API support team
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-09-28 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rest-client
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.8'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.8'
|
27
|
+
description: Client library for using Pitney Bowes Shipping API
|
28
|
+
email: ShippingAPISupport@pb.com
|
29
|
+
executables: []
|
30
|
+
extensions: []
|
31
|
+
extra_rdoc_files: []
|
32
|
+
files:
|
33
|
+
- tutorial.rb
|
34
|
+
- README.md
|
35
|
+
- LICENSE
|
36
|
+
- lib/pbshipping/account.rb
|
37
|
+
- lib/pbshipping/address.rb
|
38
|
+
- lib/pbshipping/api_object.rb
|
39
|
+
- lib/pbshipping/api_resource.rb
|
40
|
+
- lib/pbshipping/authentication.rb
|
41
|
+
- lib/pbshipping/carrier.rb
|
42
|
+
- lib/pbshipping/country.rb
|
43
|
+
- lib/pbshipping/customs.rb
|
44
|
+
- lib/pbshipping/developer.rb
|
45
|
+
- lib/pbshipping/error.rb
|
46
|
+
- lib/pbshipping/manifest.rb
|
47
|
+
- lib/pbshipping/merchant.rb
|
48
|
+
- lib/pbshipping/parcel.rb
|
49
|
+
- lib/pbshipping/rate.rb
|
50
|
+
- lib/pbshipping/scandetails.rb
|
51
|
+
- lib/pbshipping/shipment.rb
|
52
|
+
- lib/pbshipping/shipping_api_resource.rb
|
53
|
+
- lib/pbshipping/tracking.rb
|
54
|
+
- lib/pbshipping/transactiondetails.rb
|
55
|
+
- lib/pbshipping/version.rb
|
56
|
+
- lib/pbshipping.rb
|
57
|
+
- test/tc_address.rb
|
58
|
+
- test/tc_manifest.rb
|
59
|
+
- test/tc_merchant.rb
|
60
|
+
- test/tc_shipment.rb
|
61
|
+
- test/tc_transactionreport.rb
|
62
|
+
- test/test_util.rb
|
63
|
+
- test/ts_all_tests.rb
|
64
|
+
homepage: http://developer.pitneybowes.com
|
65
|
+
licenses:
|
66
|
+
- MIT
|
67
|
+
metadata:
|
68
|
+
pbshipping_documentation: http://developer.pitneybowes.com/
|
69
|
+
post_install_message:
|
70
|
+
rdoc_options: []
|
71
|
+
require_paths:
|
72
|
+
- lib
|
73
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
74
|
+
requirements:
|
75
|
+
- - '>='
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
78
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
requirements: []
|
84
|
+
rubyforge_project:
|
85
|
+
rubygems_version: 2.0.14.1
|
86
|
+
signing_key:
|
87
|
+
specification_version: 4
|
88
|
+
summary: Client library for using Pitney Bowes Shipping API
|
89
|
+
test_files:
|
90
|
+
- test/tc_address.rb
|
91
|
+
- test/tc_manifest.rb
|
92
|
+
- test/tc_merchant.rb
|
93
|
+
- test/tc_shipment.rb
|
94
|
+
- test/tc_transactionreport.rb
|
95
|
+
- test/test_util.rb
|
96
|
+
- test/ts_all_tests.rb
|