ebay 0.8.0 → 1.1

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.
@@ -0,0 +1,6 @@
1
+ # Fill these in before running the examples:
2
+
3
+ $appId = 'GarryDol-c315-485b-b87b-b01e3169ca2a'
4
+ $devId = 'N2521YE1BTDD5FXC42FQF5P5C92575'
5
+ $certId = '9cb08fd1-261b-4485-b46d-c10c0ea4c5b0'
6
+ $authToken = 'AgAAAA**AQAAAA**aAAAAA**qs/oRw**nY+sHZ2PrBmdj6wVnY+sEZ2PrA2dj6wJnY+lCpODpQidj6x9nY+seQ**QeQAAA**AAMAAA**KTnLXGIpl8mz09sL7svnRyxvBC5gkvQlvWg2dU9qpix+jYxtRAq/AEtMoTnwyqWxqcSBKrWErMqMyMg4ti4KiGmLgu2d0zUWsjGrNKNvIs/58Q5FlJ6obXpFLNEn6DkyXYnUbE3w+dKSwXall8CEpJsFk5+RIMFa9rAso5h74Z0Q0tRUWqeaUnNno6uadk2HTDoajC7kNXZ6ioqW89vDjbU280KFmiimBn3rOmNbK3rFnYrnu683O/zqMWKz457CM8vX1YQxjvyj1D3aB2a/pr4CEzinQYf3GxGszCawUvQXYXTyzyP8sSyWVDU4D18QZ0X+4wmFW4hI8dpiMQJvkhAoKFjEoIrztZDE03T/WpLoBEjr+t2/XmQD/uw+FDTmr35ar56iWnbj61Qk5v7IaMKU39Ri7lEe/8XZBmgfl7ZPg/acRbRaOGVg+g0uf1Xk35iDCjYC2PYG6COGABubGPn69AoKbO76WnptpXjaEDlnnSqm0CF0glvv9IcoeG25zpdy9+hSXfSsRl+tUC3SVCWqg0ZJbX8D1h0Y8FzRmoqKfvTtqn6rQhKznhasHqOaU1Z308iA9nHJoSWRVcxdV7V+QmCeFVT26538gZk/iTUSLg+YQ+ZKg5N+c3GqW1sGohUWgzW392SRTS/muuLy41k7eyo+QMXk7aR/rkH3tZdmqc42XekqC7xuOADoyA+CNb80Z7HVDiju04Y4ndvnx4/eIBpTf16p7CyQasM3jgNCVlXi3XKUHeNYDuCY8qPP'
@@ -42,7 +42,7 @@ class TestItems < Test::Unit::TestCase
42
42
  :Title => @@item_title,
43
43
  :Description => @@item_descr,
44
44
  :Location => 'RubyForge',
45
- :StartPrice => 12.0,
45
+ :StartPrice => '12.0',
46
46
  :Quantity => 1,
47
47
  :ListingDuration => "Days_7",
48
48
  :Country => "US",
@@ -45,7 +45,7 @@ class TestRouting < Test::Unit::TestCase
45
45
  assert_respond_to(resp, "ack")
46
46
  assert_equal(resp.ack, "Success")
47
47
 
48
- assert_equal(resp.categoryArray.category.categoryName, "eBay Motors")
48
+ assert_equal(resp.categoryArray[0].categoryName, "eBay Motors")
49
49
  end
50
50
 
51
51
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.8.11
2
+ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: ebay
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.8.0
7
- date: 2006-10-10 00:00:00 -07:00
8
- summary: "eBay4R is a Ruby wrapper for eBay's Web Services SOAP API. Emphasis is on ease
9
- of use and small footprint."
6
+ version: "1.1"
7
+ date: 2008-03-28 00:00:00 -07:00
8
+ summary: eBay4R is a Ruby wrapper for eBay's Web Services SOAP API. Emphasis is on ease of use and small footprint.
10
9
  require_paths:
11
- - lib
10
+ - lib
12
11
  email: gdolley@ucla.edu
13
12
  homepage: http://ebay4r.rubyforge.org
14
13
  rubyforge_project:
@@ -19,52 +18,60 @@ bindir: bin
19
18
  has_rdoc: true
20
19
  required_ruby_version: !ruby/object:Gem::Version::Requirement
21
20
  requirements:
22
- -
23
- - ">"
24
- - !ruby/object:Gem::Version
25
- version: 0.0.0
21
+ - - ">"
22
+ - !ruby/object:Gem::Version
23
+ version: 0.0.0
26
24
  version:
27
25
  platform: ruby
28
26
  signing_key:
29
27
  cert_chain:
28
+ post_install_message:
30
29
  authors:
31
- - Garry Dolley
30
+ - Garry Dolley
32
31
  files:
33
- - examples/get_account2.rb
34
- - examples/get_account3.rb
35
- - examples/verify_add_item.rb
36
- - examples/get_categories2.rb
37
- - examples/set_notification_preferences.rb
38
- - examples/myCredentials.rb
39
- - examples/revise_item.rb
40
- - examples/get_notification_preferences.rb
41
- - examples/hello_world.rb
42
- - examples/get_category_features.rb
43
- - examples/get_account.rb
44
- - examples/get_categories.rb
45
- - examples/get_item.rb
46
- - examples/get_notifications_usage.rb
47
- - examples/get_suggested_categories.rb
48
- - examples/add_item.rb
49
- - examples/get_feedback.rb
50
- - examples/get_ebay_details.rb
51
- - lib/eBayAPI.rb
52
- - lib/eBay.rb
53
- - lib/RequesterCredentialsHandler.rb
54
- - lib/eBayDriver.rb
55
- - test/TODO
56
- - test/tc_items.rb
57
- - test/tc_hello_world.rb
58
- - test/tc_routing.rb
59
- - contrib/ebay_platform_notifications.txt
60
- - contrib/get_and_store_ebay_categories.rb
61
- - "./lib/.document"
62
- - README
32
+ - examples/get_item.rb
33
+ - examples/get_feedback.rb
34
+ - examples/get_notification_preferences.rb
35
+ - examples/get_account.rb
36
+ - examples/set_notification_preferences.rb
37
+ - examples/revise_item.rb
38
+ - examples/get_notifications_usage.rb
39
+ - examples/get_category_features.rb
40
+ - examples/get_account3.rb
41
+ - examples/get_categories2.rb
42
+ - examples/get_categories.rb
43
+ - examples/get_suggested_categories.rb
44
+ - examples/hello_world.rb
45
+ - examples/add_item.rb
46
+ - examples/verify_add_item.rb
47
+ - examples/get_ebay_details.rb
48
+ - examples/get_account2.rb
49
+ - examples/myCredentials.rb
50
+ - lib/eBayAPI.rb
51
+ - lib/eBayMappingRegistry.rb
52
+ - lib/eBayDriver.rb
53
+ - lib/RequesterCredentialsHandler.rb
54
+ - lib/eBay.rb
55
+ - test/tc_items.rb
56
+ - test/TODO
57
+ - test/tc_routing.rb
58
+ - test/tc_hello_world.rb
59
+ - test/myCredentials.rb
60
+ - contrib/ebay_platform_notifications.txt
61
+ - contrib/get_and_store_ebay_categories.rb
62
+ - ./lib/.document
63
+ - README
63
64
  test_files: []
65
+
64
66
  rdoc_options: []
67
+
65
68
  extra_rdoc_files:
66
- - README
69
+ - README
67
70
  executables: []
71
+
68
72
  extensions: []
73
+
69
74
  requirements: []
70
- dependencies: []
75
+
76
+ dependencies: []
77
+