omniship 0.3.2.2 → 0.4.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/lib/omniship.rb +13 -12
- data/lib/omniship/address.rb +36 -36
- data/lib/omniship/carriers/fedex.rb +343 -188
- data/lib/omniship/carriers/ups.rb +156 -95
- data/lib/omniship/notification.rb +18 -0
- data/lib/omniship/response.rb +7 -7
- data/lib/omniship/ship_response.rb +12 -0
- data/lib/omniship/version.rb +2 -2
- data/lib/rails/generators/omniship/setup/setup_generator.rb +19 -0
- data/lib/rails/generators/omniship/setup/templates/initializer.rb +2 -0
- data/lib/rails/generators/omniship/setup/templates/omniship.yml +33 -0
- metadata +58 -73
data/lib/omniship/version.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
module Omniship
|
2
|
-
VERSION = "0.
|
1
|
+
module Omniship
|
2
|
+
VERSION = "0.4.0"
|
3
3
|
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
module Omniship
|
2
|
+
module Generators
|
3
|
+
class SetupGenerator < Rails::Generators::Base
|
4
|
+
desc 'Creates a Omniship gem configuration file at config/omniship.yml, and an initializer at config/initializers/omniship.rb'
|
5
|
+
|
6
|
+
def self.source_root
|
7
|
+
@_omniship_source_root ||= File.expand_path("../templates", __FILE__)
|
8
|
+
end
|
9
|
+
|
10
|
+
def create_config_file
|
11
|
+
template 'omniship.yml', File.join('config', 'omniship.yml')
|
12
|
+
end
|
13
|
+
|
14
|
+
def create_initializer_file
|
15
|
+
template 'initializer.rb', File.join('config', 'initializers', 'omniship.rb')
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
development:
|
2
|
+
ups:
|
3
|
+
key:
|
4
|
+
username:
|
5
|
+
password:
|
6
|
+
fedex:
|
7
|
+
key:
|
8
|
+
password:
|
9
|
+
account:
|
10
|
+
meter:
|
11
|
+
usps:
|
12
|
+
|
13
|
+
test:
|
14
|
+
ups:
|
15
|
+
username:
|
16
|
+
password:
|
17
|
+
fedex:
|
18
|
+
key:
|
19
|
+
password:
|
20
|
+
account:
|
21
|
+
meter:
|
22
|
+
usps:
|
23
|
+
|
24
|
+
production:
|
25
|
+
ups:
|
26
|
+
username:
|
27
|
+
password:
|
28
|
+
fedex:
|
29
|
+
key:
|
30
|
+
password:
|
31
|
+
account:
|
32
|
+
meter:
|
33
|
+
usps:
|
metadata
CHANGED
@@ -1,158 +1,139 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omniship
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.4.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Donavan White
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2014-01-27 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: activesupport
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - '>='
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: 2.3.5
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
|
-
- -
|
24
|
+
- - '>='
|
28
25
|
- !ruby/object:Gem::Version
|
29
26
|
version: 2.3.5
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: i18n
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
30
|
requirements:
|
35
|
-
- -
|
31
|
+
- - '>='
|
36
32
|
- !ruby/object:Gem::Version
|
37
33
|
version: '0'
|
38
34
|
type: :runtime
|
39
35
|
prerelease: false
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
37
|
requirements:
|
43
|
-
- -
|
38
|
+
- - '>='
|
44
39
|
- !ruby/object:Gem::Version
|
45
40
|
version: '0'
|
46
41
|
- !ruby/object:Gem::Dependency
|
47
42
|
name: active_utils
|
48
43
|
requirement: !ruby/object:Gem::Requirement
|
49
|
-
none: false
|
50
44
|
requirements:
|
51
|
-
- -
|
45
|
+
- - '>='
|
52
46
|
- !ruby/object:Gem::Version
|
53
47
|
version: 1.0.1
|
54
48
|
type: :runtime
|
55
49
|
prerelease: false
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
none: false
|
58
51
|
requirements:
|
59
|
-
- -
|
52
|
+
- - '>='
|
60
53
|
- !ruby/object:Gem::Version
|
61
54
|
version: 1.0.1
|
62
55
|
- !ruby/object:Gem::Dependency
|
63
56
|
name: builder
|
64
57
|
requirement: !ruby/object:Gem::Requirement
|
65
|
-
none: false
|
66
58
|
requirements:
|
67
|
-
- -
|
59
|
+
- - '>='
|
68
60
|
- !ruby/object:Gem::Version
|
69
61
|
version: '0'
|
70
62
|
type: :runtime
|
71
63
|
prerelease: false
|
72
64
|
version_requirements: !ruby/object:Gem::Requirement
|
73
|
-
none: false
|
74
65
|
requirements:
|
75
|
-
- -
|
66
|
+
- - '>='
|
76
67
|
- !ruby/object:Gem::Version
|
77
68
|
version: '0'
|
78
69
|
- !ruby/object:Gem::Dependency
|
79
70
|
name: nokogiri
|
80
71
|
requirement: !ruby/object:Gem::Requirement
|
81
|
-
none: false
|
82
72
|
requirements:
|
83
|
-
- -
|
73
|
+
- - '>='
|
84
74
|
- !ruby/object:Gem::Version
|
85
75
|
version: '0'
|
86
76
|
type: :runtime
|
87
77
|
prerelease: false
|
88
78
|
version_requirements: !ruby/object:Gem::Requirement
|
89
|
-
none: false
|
90
79
|
requirements:
|
91
|
-
- -
|
80
|
+
- - '>='
|
92
81
|
- !ruby/object:Gem::Version
|
93
82
|
version: '0'
|
94
83
|
- !ruby/object:Gem::Dependency
|
95
84
|
name: rake
|
96
85
|
requirement: !ruby/object:Gem::Requirement
|
97
|
-
none: false
|
98
86
|
requirements:
|
99
|
-
- -
|
87
|
+
- - '>='
|
100
88
|
- !ruby/object:Gem::Version
|
101
89
|
version: '0'
|
102
90
|
type: :development
|
103
91
|
prerelease: false
|
104
92
|
version_requirements: !ruby/object:Gem::Requirement
|
105
|
-
none: false
|
106
93
|
requirements:
|
107
|
-
- -
|
94
|
+
- - '>='
|
108
95
|
- !ruby/object:Gem::Version
|
109
96
|
version: '0'
|
110
97
|
- !ruby/object:Gem::Dependency
|
111
98
|
name: mocha
|
112
99
|
requirement: !ruby/object:Gem::Requirement
|
113
|
-
none: false
|
114
100
|
requirements:
|
115
|
-
- -
|
101
|
+
- - '>='
|
116
102
|
- !ruby/object:Gem::Version
|
117
103
|
version: '0'
|
118
104
|
type: :development
|
119
105
|
prerelease: false
|
120
106
|
version_requirements: !ruby/object:Gem::Requirement
|
121
|
-
none: false
|
122
107
|
requirements:
|
123
|
-
- -
|
108
|
+
- - '>='
|
124
109
|
- !ruby/object:Gem::Version
|
125
110
|
version: '0'
|
126
111
|
- !ruby/object:Gem::Dependency
|
127
112
|
name: railties
|
128
113
|
requirement: !ruby/object:Gem::Requirement
|
129
|
-
none: false
|
130
114
|
requirements:
|
131
|
-
- -
|
115
|
+
- - '>='
|
132
116
|
- !ruby/object:Gem::Version
|
133
117
|
version: '0'
|
134
118
|
type: :development
|
135
119
|
prerelease: false
|
136
120
|
version_requirements: !ruby/object:Gem::Requirement
|
137
|
-
none: false
|
138
121
|
requirements:
|
139
|
-
- -
|
122
|
+
- - '>='
|
140
123
|
- !ruby/object:Gem::Version
|
141
124
|
version: '0'
|
142
125
|
- !ruby/object:Gem::Dependency
|
143
126
|
name: rails
|
144
127
|
requirement: !ruby/object:Gem::Requirement
|
145
|
-
none: false
|
146
128
|
requirements:
|
147
|
-
- -
|
129
|
+
- - '>='
|
148
130
|
- !ruby/object:Gem::Version
|
149
131
|
version: '0'
|
150
132
|
type: :development
|
151
133
|
prerelease: false
|
152
134
|
version_requirements: !ruby/object:Gem::Requirement
|
153
|
-
none: false
|
154
135
|
requirements:
|
155
|
-
- -
|
136
|
+
- - '>='
|
156
137
|
- !ruby/object:Gem::Version
|
157
138
|
version: '0'
|
158
139
|
description: Create shipments and get rates and tracking info from various shipping
|
@@ -163,66 +144,70 @@ executables: []
|
|
163
144
|
extensions: []
|
164
145
|
extra_rdoc_files: []
|
165
146
|
files:
|
166
|
-
- lib/omniship/
|
167
|
-
- lib/omniship/
|
168
|
-
- lib/omniship/
|
169
|
-
- lib/
|
147
|
+
- lib/rails/generators/omniship/setup/setup_generator.rb
|
148
|
+
- lib/rails/generators/omniship/setup/templates/initializer.rb
|
149
|
+
- lib/rails/generators/omniship/setup/templates/omniship.yml
|
150
|
+
- lib/vendor/xml_node/README
|
151
|
+
- lib/vendor/xml_node/benchmark/bench_generation.rb
|
152
|
+
- lib/vendor/xml_node/test/test_parsing.rb
|
153
|
+
- lib/vendor/xml_node/test/test_generating.rb
|
154
|
+
- lib/vendor/xml_node/init.rb
|
155
|
+
- lib/vendor/xml_node/lib/xml_node.rb
|
156
|
+
- lib/vendor/xml_node/Rakefile
|
157
|
+
- lib/vendor/quantified/test/mass_test.rb
|
158
|
+
- lib/vendor/quantified/test/length_test.rb
|
159
|
+
- lib/vendor/quantified/test/test_helper.rb
|
160
|
+
- lib/vendor/quantified/README.markdown
|
161
|
+
- lib/vendor/quantified/init.rb
|
162
|
+
- lib/vendor/quantified/lib/quantified.rb
|
163
|
+
- lib/vendor/quantified/lib/quantified/length.rb
|
164
|
+
- lib/vendor/quantified/lib/quantified/mass.rb
|
165
|
+
- lib/vendor/quantified/lib/quantified/attribute.rb
|
166
|
+
- lib/vendor/quantified/Rakefile
|
167
|
+
- lib/vendor/quantified/MIT-LICENSE
|
170
168
|
- lib/omniship/response.rb
|
171
|
-
- lib/omniship/shipment_event.rb
|
172
|
-
- lib/omniship/carriers/ups.rb
|
173
169
|
- lib/omniship/carriers/usps.rb
|
174
170
|
- lib/omniship/carriers/fedex.rb
|
171
|
+
- lib/omniship/carriers/ups.rb
|
172
|
+
- lib/omniship/notification.rb
|
173
|
+
- lib/omniship/rate_response.rb
|
174
|
+
- lib/omniship/contact.rb
|
175
175
|
- lib/omniship/package.rb
|
176
176
|
- lib/omniship/carriers.rb
|
177
|
+
- lib/omniship/address.rb
|
178
|
+
- lib/omniship/tracking_response.rb
|
179
|
+
- lib/omniship/rate_estimate.rb
|
177
180
|
- lib/omniship/carrier.rb
|
178
|
-
- lib/omniship/
|
181
|
+
- lib/omniship/ship_response.rb
|
182
|
+
- lib/omniship/shipment_event.rb
|
179
183
|
- lib/omniship/version.rb
|
180
|
-
- lib/omniship/
|
181
|
-
- lib/vendor/quantified/MIT-LICENSE
|
182
|
-
- lib/vendor/quantified/test/test_helper.rb
|
183
|
-
- lib/vendor/quantified/test/mass_test.rb
|
184
|
-
- lib/vendor/quantified/test/length_test.rb
|
185
|
-
- lib/vendor/quantified/lib/quantified/attribute.rb
|
186
|
-
- lib/vendor/quantified/lib/quantified/length.rb
|
187
|
-
- lib/vendor/quantified/lib/quantified/mass.rb
|
188
|
-
- lib/vendor/quantified/lib/quantified.rb
|
189
|
-
- lib/vendor/quantified/Rakefile
|
190
|
-
- lib/vendor/quantified/init.rb
|
191
|
-
- lib/vendor/quantified/README.markdown
|
192
|
-
- lib/vendor/xml_node/test/test_parsing.rb
|
193
|
-
- lib/vendor/xml_node/test/test_generating.rb
|
194
|
-
- lib/vendor/xml_node/README
|
195
|
-
- lib/vendor/xml_node/lib/xml_node.rb
|
196
|
-
- lib/vendor/xml_node/Rakefile
|
197
|
-
- lib/vendor/xml_node/benchmark/bench_generation.rb
|
198
|
-
- lib/vendor/xml_node/init.rb
|
184
|
+
- lib/omniship/base.rb
|
199
185
|
- lib/omniship.rb
|
200
186
|
- MIT-LICENSE
|
201
187
|
- README.markdown
|
202
188
|
- CHANGELOG
|
203
189
|
homepage: http://github.com/Digi-Cazter/omniship
|
204
|
-
licenses:
|
190
|
+
licenses:
|
191
|
+
- MIT
|
192
|
+
metadata: {}
|
205
193
|
post_install_message:
|
206
194
|
rdoc_options: []
|
207
195
|
require_paths:
|
208
196
|
- lib
|
209
197
|
required_ruby_version: !ruby/object:Gem::Requirement
|
210
|
-
none: false
|
211
198
|
requirements:
|
212
|
-
- -
|
199
|
+
- - '>='
|
213
200
|
- !ruby/object:Gem::Version
|
214
201
|
version: '0'
|
215
202
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
216
|
-
none: false
|
217
203
|
requirements:
|
218
|
-
- -
|
204
|
+
- - '>='
|
219
205
|
- !ruby/object:Gem::Version
|
220
206
|
version: 1.3.6
|
221
207
|
requirements: []
|
222
208
|
rubyforge_project:
|
223
|
-
rubygems_version: 1.
|
209
|
+
rubygems_version: 2.1.9
|
224
210
|
signing_key:
|
225
|
-
specification_version:
|
211
|
+
specification_version: 4
|
226
212
|
summary: Shipping API for creating, tracking, and getting rates.
|
227
213
|
test_files: []
|
228
|
-
has_rdoc:
|