simple_shipping 0.4.6 → 0.4.7
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/.travis.yml +6 -0
- data/README.markdown +12 -2
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/simple_shipping.gemspec +3 -2
- data/spec/spec_helper.rb +8 -5
- 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: 273dd94343e47eaeb6e0bed6900818346d1cd058
|
|
4
|
+
data.tar.gz: 7c025a01a594a80430546b7497569469cc96c145
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5ad0516f11c6942509e1695ff68fa3e657ff37741aa592839d357b54ec4513f0f58e1b0a586098b18768c02d7da4f712cd039248f1be908ef490470db027a64d
|
|
7
|
+
data.tar.gz: f481cea2035624f8a7e1bbcf6af99488d78553dc8266baf9eef606b499a47aabbc9eacb44419863d0c0caf53e74b543b60c152aecafbcbc50695aa6b23d821ee
|
data/.travis.yml
ADDED
data/README.markdown
CHANGED
|
@@ -4,8 +4,18 @@
|
|
|
4
4
|
|
|
5
5
|
Provides a common simple API to build labels for the following shipping services:
|
|
6
6
|
|
|
7
|
-
* FedEx
|
|
8
|
-
* UPS
|
|
7
|
+
* [FedEx](http://fedex.com)
|
|
8
|
+
* [UPS](https://www.ups.com/upsdeveloperkit)
|
|
9
|
+
|
|
10
|
+
## Installation
|
|
11
|
+
|
|
12
|
+
Add to `Gemfile`:
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
gem 'simple_shipping'
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Run `bundle install`.
|
|
9
19
|
|
|
10
20
|
## Usage
|
|
11
21
|
```ruby
|
data/Rakefile
CHANGED
|
@@ -15,7 +15,7 @@ require 'jeweler'
|
|
|
15
15
|
Jeweler::Tasks.new do |gem|
|
|
16
16
|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
|
17
17
|
gem.name = "simple_shipping"
|
|
18
|
-
gem.homepage = "http://github.com/
|
|
18
|
+
gem.homepage = "http://github.com/TMXCredit/simple_shipping"
|
|
19
19
|
gem.license = "MIT"
|
|
20
20
|
gem.summary = %Q{Interacts with UPS and FedEx APIs}
|
|
21
21
|
gem.description = %Q{This gem uses the APIs provided by UPS and FedEx to
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.7
|
data/simple_shipping.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "simple_shipping"
|
|
8
|
-
s.version = "0.4.
|
|
8
|
+
s.version = "0.4.7"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["TMX Credit", "Potapov Sergey", "Zachary Belzer"]
|
|
@@ -23,6 +23,7 @@ Gem::Specification.new do |s|
|
|
|
23
23
|
".ruby-gemset",
|
|
24
24
|
".ruby-version",
|
|
25
25
|
".simplecov",
|
|
26
|
+
".travis.yml",
|
|
26
27
|
"Gemfile",
|
|
27
28
|
"Gemfile.lock",
|
|
28
29
|
"LICENSE.txt",
|
|
@@ -117,7 +118,7 @@ Gem::Specification.new do |s|
|
|
|
117
118
|
"wsdl/ups/Ship.wsdl",
|
|
118
119
|
"wsdl/ups/Void.wsdl"
|
|
119
120
|
]
|
|
120
|
-
s.homepage = "http://github.com/
|
|
121
|
+
s.homepage = "http://github.com/TMXCredit/simple_shipping"
|
|
121
122
|
s.licenses = ["MIT"]
|
|
122
123
|
s.require_paths = ["lib"]
|
|
123
124
|
s.rubygems_version = "2.0.3"
|
data/spec/spec_helper.rb
CHANGED
|
@@ -3,12 +3,15 @@ $LOAD_PATH.unshift(File.dirname(__FILE__))
|
|
|
3
3
|
require 'rspec'
|
|
4
4
|
require 'simple_shipping'
|
|
5
5
|
|
|
6
|
-
require "simplecov"
|
|
7
|
-
require "simplecov-rcov-text"
|
|
8
6
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
7
|
+
unless ENV['TRAVIS']
|
|
8
|
+
require "simplecov"
|
|
9
|
+
require "simplecov-rcov-text"
|
|
10
|
+
|
|
11
|
+
SimpleCov.formatter = SimpleCov::Formatter::RcovTextFormatter
|
|
12
|
+
SimpleCov.start do
|
|
13
|
+
add_filter "/spec/"
|
|
14
|
+
end
|
|
12
15
|
end
|
|
13
16
|
|
|
14
17
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simple_shipping
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- TMX Credit
|
|
@@ -187,6 +187,7 @@ files:
|
|
|
187
187
|
- .ruby-gemset
|
|
188
188
|
- .ruby-version
|
|
189
189
|
- .simplecov
|
|
190
|
+
- .travis.yml
|
|
190
191
|
- Gemfile
|
|
191
192
|
- Gemfile.lock
|
|
192
193
|
- LICENSE.txt
|
|
@@ -280,7 +281,7 @@ files:
|
|
|
280
281
|
- wsdl/fedex/ship_service_v10.wsdl
|
|
281
282
|
- wsdl/ups/Ship.wsdl
|
|
282
283
|
- wsdl/ups/Void.wsdl
|
|
283
|
-
homepage: http://github.com/
|
|
284
|
+
homepage: http://github.com/TMXCredit/simple_shipping
|
|
284
285
|
licenses:
|
|
285
286
|
- MIT
|
|
286
287
|
metadata: {}
|