channel_advisor 0.0.8 → 0.1.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.
Files changed (38) hide show
  1. data/.rspec +2 -0
  2. data/Gemfile +15 -0
  3. data/Gemfile.lock +103 -0
  4. data/LICENSE +20 -0
  5. data/README +2 -0
  6. data/Rakefile +107 -0
  7. data/VERSION +1 -0
  8. data/artifacts.yml +5 -0
  9. data/channel_advisor.gemspec +142 -0
  10. data/lib/channel_advisor/admin_service/client.rb +2 -1
  11. data/lib/channel_advisor/admin_service/mapping_registry.rb +1 -0
  12. data/lib/channel_advisor/admin_service/types.rb +1 -0
  13. data/lib/channel_advisor/cart_service/client.rb +2 -1
  14. data/lib/channel_advisor/cart_service/mapping_registry.rb +1 -0
  15. data/lib/channel_advisor/cart_service/types.rb +3 -0
  16. data/lib/channel_advisor/inventory_service/client.rb +6 -5
  17. data/lib/channel_advisor/inventory_service/mapping_registry.rb +74 -43
  18. data/lib/channel_advisor/inventory_service/types.rb +96 -36
  19. data/lib/channel_advisor/listing_service/client.rb +2 -1
  20. data/lib/channel_advisor/listing_service/mapping_registry.rb +1 -0
  21. data/lib/channel_advisor/listing_service/types.rb +1 -0
  22. data/lib/channel_advisor/marketplace_ad_service/client.rb +2 -1
  23. data/lib/channel_advisor/marketplace_ad_service/mapping_registry.rb +1 -0
  24. data/lib/channel_advisor/marketplace_ad_service/types.rb +1 -0
  25. data/lib/channel_advisor/order_service/client.rb +18 -1
  26. data/lib/channel_advisor/order_service/mapping_registry.rb +153 -22
  27. data/lib/channel_advisor/order_service/types.rb +170 -20
  28. data/lib/channel_advisor/shipping_service/client.rb +2 -1
  29. data/lib/channel_advisor/shipping_service/mapping_registry.rb +7 -1
  30. data/lib/channel_advisor/shipping_service/types.rb +13 -3
  31. data/lib/channel_advisor/store_service/client.rb +2 -1
  32. data/lib/channel_advisor/store_service/mapping_registry.rb +1 -0
  33. data/lib/channel_advisor/store_service/types.rb +1 -0
  34. data/lib/channel_advisor/tax_service/client.rb +2 -1
  35. data/lib/channel_advisor/tax_service/mapping_registry.rb +21 -20
  36. data/lib/channel_advisor/tax_service/types.rb +20 -19
  37. data/spec/spec_helper.rb +1 -2
  38. metadata +135 -38
@@ -1,3 +1,4 @@
1
+
1
2
  module ChannelAdvisor; module ShippingServiceSOAP
2
3
 
3
4
 
@@ -181,6 +182,7 @@ end
181
182
  # carrierCode - SOAP::SOAPString
182
183
  # classCode - SOAP::SOAPString
183
184
  # trackingNumber - SOAP::SOAPString
185
+ # sellerFulfillmentID - SOAP::SOAPString
184
186
  # shipmentCost - SOAP::SOAPDecimal
185
187
  # shipmentTaxCost - SOAP::SOAPDecimal
186
188
  # insuranceCost - SOAP::SOAPDecimal
@@ -190,16 +192,18 @@ class PartialShipmentContents
190
192
  attr_accessor :carrierCode
191
193
  attr_accessor :classCode
192
194
  attr_accessor :trackingNumber
195
+ attr_accessor :sellerFulfillmentID
193
196
  attr_accessor :shipmentCost
194
197
  attr_accessor :shipmentTaxCost
195
198
  attr_accessor :insuranceCost
196
199
 
197
- def initialize(shipmentContents = nil, dateShippedGMT = nil, carrierCode = nil, classCode = nil, trackingNumber = nil, shipmentCost = nil, shipmentTaxCost = nil, insuranceCost = nil)
200
+ def initialize(shipmentContents = nil, dateShippedGMT = nil, carrierCode = nil, classCode = nil, trackingNumber = nil, sellerFulfillmentID = nil, shipmentCost = nil, shipmentTaxCost = nil, insuranceCost = nil)
198
201
  @shipmentContents = shipmentContents
199
202
  @dateShippedGMT = dateShippedGMT
200
203
  @carrierCode = carrierCode
201
204
  @classCode = classCode
202
205
  @trackingNumber = trackingNumber
206
+ @sellerFulfillmentID = sellerFulfillmentID
203
207
  @shipmentCost = shipmentCost
204
208
  @shipmentTaxCost = shipmentTaxCost
205
209
  @insuranceCost = insuranceCost
@@ -238,6 +242,7 @@ end
238
242
  # carrierCode - SOAP::SOAPString
239
243
  # classCode - SOAP::SOAPString
240
244
  # trackingNumber - SOAP::SOAPString
245
+ # sellerFulfillmentID - SOAP::SOAPString
241
246
  # shipmentCost - SOAP::SOAPDecimal
242
247
  # shipmentTaxCost - SOAP::SOAPDecimal
243
248
  # insuranceCost - SOAP::SOAPDecimal
@@ -246,15 +251,17 @@ class FullShipmentContents
246
251
  attr_accessor :carrierCode
247
252
  attr_accessor :classCode
248
253
  attr_accessor :trackingNumber
254
+ attr_accessor :sellerFulfillmentID
249
255
  attr_accessor :shipmentCost
250
256
  attr_accessor :shipmentTaxCost
251
257
  attr_accessor :insuranceCost
252
258
 
253
- def initialize(dateShippedGMT = nil, carrierCode = nil, classCode = nil, trackingNumber = nil, shipmentCost = nil, shipmentTaxCost = nil, insuranceCost = nil)
259
+ def initialize(dateShippedGMT = nil, carrierCode = nil, classCode = nil, trackingNumber = nil, sellerFulfillmentID = nil, shipmentCost = nil, shipmentTaxCost = nil, insuranceCost = nil)
254
260
  @dateShippedGMT = dateShippedGMT
255
261
  @carrierCode = carrierCode
256
262
  @classCode = classCode
257
263
  @trackingNumber = trackingNumber
264
+ @sellerFulfillmentID = sellerFulfillmentID
258
265
  @shipmentCost = shipmentCost
259
266
  @shipmentTaxCost = shipmentTaxCost
260
267
  @insuranceCost = insuranceCost
@@ -360,6 +367,7 @@ end
360
367
  # carrierCode - SOAP::SOAPString
361
368
  # classCode - SOAP::SOAPString
362
369
  # trackingNumber - SOAP::SOAPString
370
+ # sellerFulfillmentID - SOAP::SOAPString
363
371
  class OrderShipped
364
372
  attr_accessor :accountID
365
373
  attr_accessor :orderID
@@ -367,14 +375,16 @@ class OrderShipped
367
375
  attr_accessor :carrierCode
368
376
  attr_accessor :classCode
369
377
  attr_accessor :trackingNumber
378
+ attr_accessor :sellerFulfillmentID
370
379
 
371
- def initialize(accountID = nil, orderID = nil, dateShippedGMT = nil, carrierCode = nil, classCode = nil, trackingNumber = nil)
380
+ def initialize(accountID = nil, orderID = nil, dateShippedGMT = nil, carrierCode = nil, classCode = nil, trackingNumber = nil, sellerFulfillmentID = nil)
372
381
  @accountID = accountID
373
382
  @orderID = orderID
374
383
  @dateShippedGMT = dateShippedGMT
375
384
  @carrierCode = carrierCode
376
385
  @classCode = classCode
377
386
  @trackingNumber = trackingNumber
387
+ @sellerFulfillmentID = sellerFulfillmentID
378
388
  end
379
389
  end
380
390
 
@@ -1,7 +1,8 @@
1
+
1
2
  module ChannelAdvisor::StoreServiceSOAP
2
3
 
3
4
  class StoreServiceSoap < ::SOAP::RPC::Driver
4
- DefaultEndpointUrl = "https://api.channeladvisor.com/ChannelAdvisorAPI/v1/StoreService.asmx"
5
+ DefaultEndpointUrl = "https://api.channeladvisor.com/ChannelAdvisorAPI/v3/StoreService.asmx"
5
6
 
6
7
  Methods = [
7
8
  [ "http://api.channeladvisor.com/webservices/GetSearchAnalysisStats",
@@ -1,3 +1,4 @@
1
+
1
2
  module ChannelAdvisor; module StoreServiceSOAP
2
3
 
3
4
  module DefaultMappingRegistry
@@ -1,3 +1,4 @@
1
+
1
2
  module ChannelAdvisor; module StoreServiceSOAP
2
3
 
3
4
 
@@ -1,7 +1,8 @@
1
+
1
2
  module ChannelAdvisor::TaxServiceSOAP
2
3
 
3
4
  class TaxServiceSoap < ::SOAP::RPC::Driver
4
- DefaultEndpointUrl = "https://api.channeladvisor.com/ChannelAdvisorAPI/v1/TaxService.asmx"
5
+ DefaultEndpointUrl = "https://api.channeladvisor.com/ChannelAdvisorAPI/v3/TaxService.asmx"
5
6
 
6
7
  Methods = [
7
8
  [ "http://api.channeladvisor.com/webservices/GetTaxRateList",
@@ -1,3 +1,4 @@
1
+
1
2
  module ChannelAdvisor; module TaxServiceSOAP
2
3
 
3
4
  module DefaultMappingRegistry
@@ -36,30 +37,30 @@ module DefaultMappingRegistry
36
37
  )
37
38
 
38
39
  EncodedRegistry.register(
39
- :class => ChannelAdvisor::TaxServiceSOAP::TaxItemProduct,
40
- :schema_type => XSD::QName.new(NsWebservices, "TaxItemProduct"),
40
+ :class => ChannelAdvisor::TaxServiceSOAP::TaxItemVatShipping,
41
+ :schema_type => XSD::QName.new(NsWebservices, "TaxItemVatShipping"),
41
42
  :schema_basetype => XSD::QName.new(NsWebservices, "TaxItemBase"),
42
43
  :schema_element => [
43
44
  ["taxAmount", ["SOAP::SOAPDecimal", XSD::QName.new(NsWebservices, "TaxAmount")]],
44
45
  ["taxRate", ["SOAP::SOAPDouble", XSD::QName.new(NsWebservices, "TaxRate")]],
45
46
  ["taxType", ["ChannelAdvisor::TaxServiceSOAP::TaxTypeCode", XSD::QName.new(NsWebservices, "TaxType")]],
46
- ["quantity", ["SOAP::SOAPInt", XSD::QName.new(NsWebservices, "Quantity")]],
47
- ["unitPrice", ["SOAP::SOAPDecimal", XSD::QName.new(NsWebservices, "UnitPrice")]],
48
- ["lineItemID", ["SOAP::SOAPInt", XSD::QName.new(NsWebservices, "LineItemID")]],
49
- ["title", ["SOAP::SOAPString", XSD::QName.new(NsWebservices, "Title")], [0, 1]],
50
- ["sKU", ["SOAP::SOAPString", XSD::QName.new(NsWebservices, "SKU")], [0, 1]]
47
+ ["shippingCost", ["SOAP::SOAPDecimal", XSD::QName.new(NsWebservices, "ShippingCost")]]
51
48
  ]
52
49
  )
53
50
 
54
51
  EncodedRegistry.register(
55
- :class => ChannelAdvisor::TaxServiceSOAP::TaxItemVatShipping,
56
- :schema_type => XSD::QName.new(NsWebservices, "TaxItemVatShipping"),
52
+ :class => ChannelAdvisor::TaxServiceSOAP::TaxItemProduct,
53
+ :schema_type => XSD::QName.new(NsWebservices, "TaxItemProduct"),
57
54
  :schema_basetype => XSD::QName.new(NsWebservices, "TaxItemBase"),
58
55
  :schema_element => [
59
56
  ["taxAmount", ["SOAP::SOAPDecimal", XSD::QName.new(NsWebservices, "TaxAmount")]],
60
57
  ["taxRate", ["SOAP::SOAPDouble", XSD::QName.new(NsWebservices, "TaxRate")]],
61
58
  ["taxType", ["ChannelAdvisor::TaxServiceSOAP::TaxTypeCode", XSD::QName.new(NsWebservices, "TaxType")]],
62
- ["shippingCost", ["SOAP::SOAPDecimal", XSD::QName.new(NsWebservices, "ShippingCost")]]
59
+ ["quantity", ["SOAP::SOAPInt", XSD::QName.new(NsWebservices, "Quantity")]],
60
+ ["unitPrice", ["SOAP::SOAPDecimal", XSD::QName.new(NsWebservices, "UnitPrice")]],
61
+ ["lineItemID", ["SOAP::SOAPInt", XSD::QName.new(NsWebservices, "LineItemID")]],
62
+ ["title", ["SOAP::SOAPString", XSD::QName.new(NsWebservices, "Title")], [0, 1]],
63
+ ["sKU", ["SOAP::SOAPString", XSD::QName.new(NsWebservices, "SKU")], [0, 1]]
63
64
  ]
64
65
  )
65
66
 
@@ -125,30 +126,30 @@ module DefaultMappingRegistry
125
126
  )
126
127
 
127
128
  LiteralRegistry.register(
128
- :class => ChannelAdvisor::TaxServiceSOAP::TaxItemProduct,
129
- :schema_type => XSD::QName.new(NsWebservices, "TaxItemProduct"),
129
+ :class => ChannelAdvisor::TaxServiceSOAP::TaxItemVatShipping,
130
+ :schema_type => XSD::QName.new(NsWebservices, "TaxItemVatShipping"),
130
131
  :schema_basetype => XSD::QName.new(NsWebservices, "TaxItemBase"),
131
132
  :schema_element => [
132
133
  ["taxAmount", ["SOAP::SOAPDecimal", XSD::QName.new(NsWebservices, "TaxAmount")]],
133
134
  ["taxRate", ["SOAP::SOAPDouble", XSD::QName.new(NsWebservices, "TaxRate")]],
134
135
  ["taxType", ["ChannelAdvisor::TaxServiceSOAP::TaxTypeCode", XSD::QName.new(NsWebservices, "TaxType")]],
135
- ["quantity", ["SOAP::SOAPInt", XSD::QName.new(NsWebservices, "Quantity")]],
136
- ["unitPrice", ["SOAP::SOAPDecimal", XSD::QName.new(NsWebservices, "UnitPrice")]],
137
- ["lineItemID", ["SOAP::SOAPInt", XSD::QName.new(NsWebservices, "LineItemID")]],
138
- ["title", ["SOAP::SOAPString", XSD::QName.new(NsWebservices, "Title")], [0, 1]],
139
- ["sKU", ["SOAP::SOAPString", XSD::QName.new(NsWebservices, "SKU")], [0, 1]]
136
+ ["shippingCost", ["SOAP::SOAPDecimal", XSD::QName.new(NsWebservices, "ShippingCost")]]
140
137
  ]
141
138
  )
142
139
 
143
140
  LiteralRegistry.register(
144
- :class => ChannelAdvisor::TaxServiceSOAP::TaxItemVatShipping,
145
- :schema_type => XSD::QName.new(NsWebservices, "TaxItemVatShipping"),
141
+ :class => ChannelAdvisor::TaxServiceSOAP::TaxItemProduct,
142
+ :schema_type => XSD::QName.new(NsWebservices, "TaxItemProduct"),
146
143
  :schema_basetype => XSD::QName.new(NsWebservices, "TaxItemBase"),
147
144
  :schema_element => [
148
145
  ["taxAmount", ["SOAP::SOAPDecimal", XSD::QName.new(NsWebservices, "TaxAmount")]],
149
146
  ["taxRate", ["SOAP::SOAPDouble", XSD::QName.new(NsWebservices, "TaxRate")]],
150
147
  ["taxType", ["ChannelAdvisor::TaxServiceSOAP::TaxTypeCode", XSD::QName.new(NsWebservices, "TaxType")]],
151
- ["shippingCost", ["SOAP::SOAPDecimal", XSD::QName.new(NsWebservices, "ShippingCost")]]
148
+ ["quantity", ["SOAP::SOAPInt", XSD::QName.new(NsWebservices, "Quantity")]],
149
+ ["unitPrice", ["SOAP::SOAPDecimal", XSD::QName.new(NsWebservices, "UnitPrice")]],
150
+ ["lineItemID", ["SOAP::SOAPInt", XSD::QName.new(NsWebservices, "LineItemID")]],
151
+ ["title", ["SOAP::SOAPString", XSD::QName.new(NsWebservices, "Title")], [0, 1]],
152
+ ["sKU", ["SOAP::SOAPString", XSD::QName.new(NsWebservices, "SKU")], [0, 1]]
152
153
  ]
153
154
  )
154
155
 
@@ -1,3 +1,4 @@
1
+
1
2
  module ChannelAdvisor; module TaxServiceSOAP
2
3
 
3
4
 
@@ -60,6 +61,25 @@ class TaxItemBase
60
61
  end
61
62
  end
62
63
 
64
+ # {http://api.channeladvisor.com/webservices/}TaxItemVatShipping
65
+ # taxAmount - SOAP::SOAPDecimal
66
+ # taxRate - SOAP::SOAPDouble
67
+ # taxType - ChannelAdvisor::TaxServiceSOAP::TaxTypeCode
68
+ # shippingCost - SOAP::SOAPDecimal
69
+ class TaxItemVatShipping < TaxItemBase
70
+ attr_accessor :taxAmount
71
+ attr_accessor :taxRate
72
+ attr_accessor :taxType
73
+ attr_accessor :shippingCost
74
+
75
+ def initialize(taxAmount = nil, taxRate = nil, taxType = nil, shippingCost = nil)
76
+ @taxAmount = taxAmount
77
+ @taxRate = taxRate
78
+ @taxType = taxType
79
+ @shippingCost = shippingCost
80
+ end
81
+ end
82
+
63
83
  # {http://api.channeladvisor.com/webservices/}TaxItemProduct
64
84
  # taxAmount - SOAP::SOAPDecimal
65
85
  # taxRate - SOAP::SOAPDouble
@@ -91,25 +111,6 @@ class TaxItemProduct < TaxItemBase
91
111
  end
92
112
  end
93
113
 
94
- # {http://api.channeladvisor.com/webservices/}TaxItemVatShipping
95
- # taxAmount - SOAP::SOAPDecimal
96
- # taxRate - SOAP::SOAPDouble
97
- # taxType - ChannelAdvisor::TaxServiceSOAP::TaxTypeCode
98
- # shippingCost - SOAP::SOAPDecimal
99
- class TaxItemVatShipping < TaxItemBase
100
- attr_accessor :taxAmount
101
- attr_accessor :taxRate
102
- attr_accessor :taxType
103
- attr_accessor :shippingCost
104
-
105
- def initialize(taxAmount = nil, taxRate = nil, taxType = nil, shippingCost = nil)
106
- @taxAmount = taxAmount
107
- @taxRate = taxRate
108
- @taxType = taxType
109
- @shippingCost = shippingCost
110
- end
111
- end
112
-
113
114
  # {http://api.channeladvisor.com/webservices/}APICredentials
114
115
  # developerKey - SOAP::SOAPString
115
116
  # password - SOAP::SOAPString
data/spec/spec_helper.rb CHANGED
@@ -1,4 +1,3 @@
1
- require 'rubygems'
2
- require 'spec'
1
+ require 'rspec'
3
2
 
4
3
  require File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib', 'channel_advisor'))
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: channel_advisor
3
3
  version: !ruby/object:Gem::Version
4
- hash: 15
5
- prerelease: false
4
+ hash: 27
5
+ prerelease:
6
6
  segments:
7
7
  - 0
8
+ - 1
8
9
  - 0
9
- - 8
10
- version: 0.0.8
10
+ version: 0.1.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Second Rotation, Inc.
@@ -15,93 +15,192 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-05-25 00:00:00 -04:00
18
+ date: 2011-01-27 00:00:00 -05:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
22
- name: soap4r
23
- prerelease: false
24
- requirement: &id001 !ruby/object:Gem::Requirement
22
+ type: :runtime
23
+ version_requirements: &id001 !ruby/object:Gem::Requirement
25
24
  none: false
26
25
  requirements:
27
- - - ">="
26
+ - - ~>
28
27
  - !ruby/object:Gem::Version
29
- hash: 19
28
+ hash: 5
30
29
  segments:
31
30
  - 1
32
31
  - 5
33
- - 8
34
- version: 1.5.8
35
- type: :runtime
36
- version_requirements: *id001
32
+ version: "1.5"
33
+ requirement: *id001
34
+ prerelease: false
35
+ name: soap4r
37
36
  - !ruby/object:Gem::Dependency
37
+ type: :runtime
38
+ version_requirements: &id002 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ~>
42
+ - !ruby/object:Gem::Version
43
+ hash: 15
44
+ segments:
45
+ - 2
46
+ - 6
47
+ version: "2.6"
48
+ requirement: *id002
49
+ prerelease: false
38
50
  name: configatron
51
+ - !ruby/object:Gem::Dependency
52
+ type: :development
53
+ version_requirements: &id003 !ruby/object:Gem::Requirement
54
+ none: false
55
+ requirements:
56
+ - - ~>
57
+ - !ruby/object:Gem::Version
58
+ hash: 3
59
+ segments:
60
+ - 2
61
+ - 3
62
+ - 0
63
+ version: 2.3.0
64
+ requirement: *id003
39
65
  prerelease: false
40
- requirement: &id002 !ruby/object:Gem::Requirement
66
+ name: rspec
67
+ - !ruby/object:Gem::Dependency
68
+ type: :development
69
+ version_requirements: &id004 !ruby/object:Gem::Requirement
41
70
  none: false
42
71
  requirements:
43
- - - ">="
72
+ - - ~>
44
73
  - !ruby/object:Gem::Version
45
- hash: 15
74
+ hash: 7
75
+ segments:
76
+ - 0
77
+ - 6
78
+ - 0
79
+ version: 0.6.0
80
+ requirement: *id004
81
+ prerelease: false
82
+ name: yard
83
+ - !ruby/object:Gem::Dependency
84
+ type: :development
85
+ version_requirements: &id005 !ruby/object:Gem::Requirement
86
+ none: false
87
+ requirements:
88
+ - - ~>
89
+ - !ruby/object:Gem::Version
90
+ hash: 23
91
+ segments:
92
+ - 1
93
+ - 0
94
+ - 0
95
+ version: 1.0.0
96
+ requirement: *id005
97
+ prerelease: false
98
+ name: bundler
99
+ - !ruby/object:Gem::Dependency
100
+ type: :development
101
+ version_requirements: &id006 !ruby/object:Gem::Requirement
102
+ none: false
103
+ requirements:
104
+ - - ~>
105
+ - !ruby/object:Gem::Version
106
+ hash: 7
46
107
  segments:
108
+ - 1
109
+ - 5
47
110
  - 2
111
+ version: 1.5.2
112
+ requirement: *id006
113
+ prerelease: false
114
+ name: jeweler
115
+ - !ruby/object:Gem::Dependency
116
+ type: :development
117
+ version_requirements: &id007 !ruby/object:Gem::Requirement
118
+ none: false
119
+ requirements:
120
+ - - ">="
121
+ - !ruby/object:Gem::Version
122
+ hash: 3
123
+ segments:
48
124
  - 0
125
+ version: "0"
126
+ requirement: *id007
127
+ prerelease: false
128
+ name: rcov
129
+ - !ruby/object:Gem::Dependency
130
+ type: :development
131
+ version_requirements: &id008 !ruby/object:Gem::Requirement
132
+ none: false
133
+ requirements:
134
+ - - ">="
135
+ - !ruby/object:Gem::Version
136
+ hash: 3
137
+ segments:
49
138
  - 0
50
- version: 2.0.0
51
- type: :runtime
52
- version_requirements: *id002
139
+ version: "0"
140
+ requirement: *id008
141
+ prerelease: false
142
+ name: metric_fu
53
143
  description: "channel_advisor was developed by: Second Rotation, Inc."
54
- email: jason@secondrotation.com
144
+ email: jason@gazelle.com
55
145
  executables: []
56
146
 
57
147
  extensions: []
58
148
 
59
149
  extra_rdoc_files:
150
+ - LICENSE
60
151
  - README
61
152
  files:
153
+ - .rspec
154
+ - Gemfile
155
+ - Gemfile.lock
156
+ - LICENSE
157
+ - README
158
+ - Rakefile
159
+ - VERSION
160
+ - artifacts.yml
161
+ - channel_advisor.gemspec
162
+ - lib/channel_advisor.rb
163
+ - lib/channel_advisor/admin_service.rb
62
164
  - lib/channel_advisor/admin_service/client.rb
63
165
  - lib/channel_advisor/admin_service/mapping_registry.rb
64
166
  - lib/channel_advisor/admin_service/types.rb
65
- - lib/channel_advisor/admin_service.rb
66
167
  - lib/channel_advisor/auth_handler.rb
168
+ - lib/channel_advisor/cart_service.rb
67
169
  - lib/channel_advisor/cart_service/client.rb
68
170
  - lib/channel_advisor/cart_service/mapping_registry.rb
69
171
  - lib/channel_advisor/cart_service/types.rb
70
- - lib/channel_advisor/cart_service.rb
71
172
  - lib/channel_advisor/errors.rb
173
+ - lib/channel_advisor/inventory_service.rb
72
174
  - lib/channel_advisor/inventory_service/client.rb
73
175
  - lib/channel_advisor/inventory_service/mapping_registry.rb
74
176
  - lib/channel_advisor/inventory_service/types.rb
75
- - lib/channel_advisor/inventory_service.rb
177
+ - lib/channel_advisor/listing_service.rb
76
178
  - lib/channel_advisor/listing_service/client.rb
77
179
  - lib/channel_advisor/listing_service/mapping_registry.rb
78
180
  - lib/channel_advisor/listing_service/types.rb
79
- - lib/channel_advisor/listing_service.rb
181
+ - lib/channel_advisor/marketplace_ad_service.rb
80
182
  - lib/channel_advisor/marketplace_ad_service/client.rb
81
183
  - lib/channel_advisor/marketplace_ad_service/mapping_registry.rb
82
184
  - lib/channel_advisor/marketplace_ad_service/types.rb
83
- - lib/channel_advisor/marketplace_ad_service.rb
84
185
  - lib/channel_advisor/message_code.rb
186
+ - lib/channel_advisor/order_service.rb
85
187
  - lib/channel_advisor/order_service/client.rb
86
188
  - lib/channel_advisor/order_service/mapping_registry.rb
87
189
  - lib/channel_advisor/order_service/types.rb
88
- - lib/channel_advisor/order_service.rb
89
190
  - lib/channel_advisor/service_proxy.rb
90
191
  - lib/channel_advisor/shared_requires.rb
192
+ - lib/channel_advisor/shipping_service.rb
91
193
  - lib/channel_advisor/shipping_service/client.rb
92
194
  - lib/channel_advisor/shipping_service/mapping_registry.rb
93
195
  - lib/channel_advisor/shipping_service/types.rb
94
- - lib/channel_advisor/shipping_service.rb
196
+ - lib/channel_advisor/store_service.rb
95
197
  - lib/channel_advisor/store_service/client.rb
96
198
  - lib/channel_advisor/store_service/mapping_registry.rb
97
199
  - lib/channel_advisor/store_service/types.rb
98
- - lib/channel_advisor/store_service.rb
200
+ - lib/channel_advisor/tax_service.rb
99
201
  - lib/channel_advisor/tax_service/client.rb
100
202
  - lib/channel_advisor/tax_service/mapping_registry.rb
101
203
  - lib/channel_advisor/tax_service/types.rb
102
- - lib/channel_advisor/tax_service.rb
103
- - lib/channel_advisor.rb
104
- - README
105
204
  - spec/integration/inventory_sync_spec.rb
106
205
  - spec/lib/channel_advisor/admin_service_spec.rb
107
206
  - spec/lib/channel_advisor/auth_handler_spec.rb
@@ -119,14 +218,13 @@ files:
119
218
  - spec/spec_helper.rb
120
219
  has_rdoc: true
121
220
  homepage: http://github.com/secondrotation/channel_advisor/
122
- licenses: []
123
-
221
+ licenses:
222
+ - MIT
124
223
  post_install_message:
125
224
  rdoc_options: []
126
225
 
127
226
  require_paths:
128
227
  - lib
129
- - lib
130
228
  required_ruby_version: !ruby/object:Gem::Requirement
131
229
  none: false
132
230
  requirements:
@@ -147,8 +245,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
147
245
  version: "0"
148
246
  requirements: []
149
247
 
150
- rubyforge_project: channel_advisor
151
- rubygems_version: 1.3.7
248
+ rubyforge_project:
249
+ rubygems_version: 1.4.2
152
250
  signing_key:
153
251
  specification_version: 3
154
252
  summary: channel_advisor
@@ -166,5 +264,4 @@ test_files:
166
264
  - spec/lib/channel_advisor/shipping_service_spec.rb
167
265
  - spec/lib/channel_advisor/store_service_spec.rb
168
266
  - spec/lib/channel_advisor/tax_service_spec.rb
169
- - spec/spec.opts
170
267
  - spec/spec_helper.rb