yun-logistics 1.0.1 → 1.0.2

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: a0e62dbd70306272d5fab20c8dbf401dff10e11d
4
- data.tar.gz: ed6d58dae312b9d637ddd60af90cc6b7dff5ec2f
3
+ metadata.gz: f14cdd8ff9f801e38948407f1e87b4d2a5a0e5e0
4
+ data.tar.gz: e36acb7df19c532d79c48576e2a3a94aa995217e
5
5
  SHA512:
6
- metadata.gz: 2c09eb7c910b96b76c635c2986b6ff5bbff327384f7a581250f505f682c9779ae0bf9888aa3cd32441df3852f6ccac402fb9de94d41004c190f64f90e7c994e8
7
- data.tar.gz: 1a94b922ed04e3d2a220295e75de5b4fab10a1ae3533b0aa7d818e120e8ccac9c3b330ec06f298d92e7441477db5f80fdab6c94d522806b63af0bc2a8e8e3cf0
6
+ metadata.gz: 8d492f503e1a79b0321686aefdd74069495398352126dfab9e817ba4bd78c911bd11c2c7082501932d9ad49a917fcf8b8786217712dbd87d03ed32b5b581b1a7
7
+ data.tar.gz: 6c586f3c66e47f7f22f0a4b011906c8182896618c89948b6680843d7ff789c0f20a991c29677e46da5e68b7a22279833f3fcde8c35531aa9ec61b8e6496452f6
data/bin/yun-logistics ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "yun/logistics"
5
+
6
+ puts Yun::Logistics::VERSION
@@ -4,7 +4,7 @@
4
4
  module Yun
5
5
  module Logistics
6
6
  module Ems
7
- class Label < Base
7
+ class Label < Ems::Base
8
8
 
9
9
  # 类方法
10
10
  class << self
@@ -4,7 +4,7 @@
4
4
  module Yun
5
5
  module Logistics
6
6
  module Ems
7
- class Rate < Base
7
+ class Rate < Ems::Base
8
8
 
9
9
  # 类方法
10
10
  class << self
@@ -3,7 +3,7 @@
3
3
  module Yun
4
4
  module Logistics
5
5
  module Ems
6
- class Ship < Base
6
+ class Ship < Ems::Base
7
7
  # 类方法
8
8
  class << self
9
9
 
@@ -4,7 +4,7 @@
4
4
  module Yun
5
5
  module Logistics
6
6
  module Ems
7
- class Track < Base
7
+ class Track < Ems::Base
8
8
  # 类方法
9
9
  class << self
10
10
  # 跟踪信息服务(实时跟踪信息的查询)
@@ -1,5 +1,5 @@
1
1
  module Yun
2
2
  module Logistics
3
- VERSION = "1.0.1"
3
+ VERSION = "1.0.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yun-logistics
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - liyongkuan
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-05-13 00:00:00.000000000 Z
11
+ date: 2016-05-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -95,6 +95,7 @@ files:
95
95
  - Rakefile
96
96
  - bin/console
97
97
  - bin/setup
98
+ - bin/yun-logistics
98
99
  - lib/yun/logistics.rb
99
100
  - lib/yun/logistics/ems/address.rb
100
101
  - lib/yun/logistics/ems/base.rb