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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 69f676b90043220ffa380e7792e4fb651744ed50
4
- data.tar.gz: 47469efeb1e360ec1bda3cd31267177145f6821c
3
+ metadata.gz: 273dd94343e47eaeb6e0bed6900818346d1cd058
4
+ data.tar.gz: 7c025a01a594a80430546b7497569469cc96c145
5
5
  SHA512:
6
- metadata.gz: 1d9531870e2266597f74e160954cc9910bfb7a7e6aa44bd76b80b54840263debdf0ae684c0e0346d197a9f8c2263220c97d9aa5339d5828446eebb178cda329f
7
- data.tar.gz: aec31ce585327a223c565b1704b0e552d774555327f488c1e836cf3dbe4cf8cdffeaf7ddd725a16d78e145d7d6498342d7577980a4769f872cb289cf3a417d40
6
+ metadata.gz: 5ad0516f11c6942509e1695ff68fa3e657ff37741aa592839d357b54ec4513f0f58e1b0a586098b18768c02d7da4f712cd039248f1be908ef490470db027a64d
7
+ data.tar.gz: f481cea2035624f8a7e1bbcf6af99488d78553dc8266baf9eef606b499a47aabbc9eacb44419863d0c0caf53e74b543b60c152aecafbcbc50695aa6b23d821ee
@@ -0,0 +1,6 @@
1
+ language: ruby
2
+ script: "bundle exec rake spec"
3
+ rvm:
4
+ - 1.9.3
5
+ - 2.0.0
6
+ - 2.1.0
@@ -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 (http://fedex.com)
8
- * UPS (http://ups.com) API (https://www.ups.com/upsdeveloperkit)
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/greyblake/simple_shipping"
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.6
1
+ 0.4.7
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "simple_shipping"
8
- s.version = "0.4.6"
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/greyblake/simple_shipping"
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"
@@ -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
- SimpleCov.formatter = SimpleCov::Formatter::RcovTextFormatter
10
- SimpleCov.start do
11
- add_filter "/spec/"
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.6
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/greyblake/simple_shipping
284
+ homepage: http://github.com/TMXCredit/simple_shipping
284
285
  licenses:
285
286
  - MIT
286
287
  metadata: {}