ebay 0.5.0 → 0.5.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.
- data/README +13 -0
- data/lib/RequesterCredentialsHandler.rb +2 -0
- data/lib/eBayAPI.rb +2 -0
- metadata +33 -37
data/README
CHANGED
|
@@ -179,6 +179,17 @@ The only difference is if you do not pass any arguments to the factory method
|
|
|
179
179
|
and do not explicitly put empty parentheses (), Ruby will assume it is a
|
|
180
180
|
constant, not a method.
|
|
181
181
|
|
|
182
|
+
==== Setting XML Attributes
|
|
183
|
+
|
|
184
|
+
The symbol you use to set an XML attribute on an element is:
|
|
185
|
+
|
|
186
|
+
:xmlattr_<attribute_name>
|
|
187
|
+
|
|
188
|
+
For example, to create a <Label> element (corresponding to eBay's LabelType)
|
|
189
|
+
with an attribute of "visible" equal to "true", you would do:
|
|
190
|
+
|
|
191
|
+
EBay.Label(:Name => "some string", :xmlattr_visible => true)
|
|
192
|
+
|
|
182
193
|
|
|
183
194
|
=== Format of Responses
|
|
184
195
|
|
|
@@ -344,3 +355,5 @@ details.
|
|
|
344
355
|
You should have received a copy of the GNU General Public License along with
|
|
345
356
|
eBay4R; if not, write to the Free Software Foundation, Inc., 51 Franklin
|
|
346
357
|
Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
358
|
+
|
|
359
|
+
$Id: README,v 1.14 2005/12/21 02:17:10 garrydolley Exp $
|
data/lib/eBayAPI.rb
CHANGED
metadata
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
|
-
!ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
rubygems_version: 0.8.11
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: ebay
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 0.5.
|
|
7
|
-
date: 2005-12-
|
|
8
|
-
summary: eBay4R is a Ruby wrapper for eBay's Web Services SOAP API. Emphasis is on ease
|
|
6
|
+
version: 0.5.1
|
|
7
|
+
date: 2005-12-23 00:00:00 -08: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."
|
|
9
10
|
require_paths:
|
|
10
|
-
- lib
|
|
11
|
+
- lib
|
|
11
12
|
email: gdolley@ucla.edu
|
|
12
|
-
homepage: ebay4r.rubyforge.org
|
|
13
|
+
homepage: http://ebay4r.rubyforge.org
|
|
13
14
|
rubyforge_project:
|
|
14
15
|
description:
|
|
15
16
|
autorequire: eBayAPI
|
|
@@ -18,46 +19,41 @@ bindir: bin
|
|
|
18
19
|
has_rdoc: true
|
|
19
20
|
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
|
20
21
|
requirements:
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
-
|
|
23
|
+
- ">"
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: 0.0.0
|
|
24
26
|
version:
|
|
25
27
|
platform: ruby
|
|
26
28
|
signing_key:
|
|
27
29
|
cert_chain:
|
|
28
30
|
authors:
|
|
29
|
-
- Garry Dolley
|
|
31
|
+
- Garry Dolley
|
|
30
32
|
files:
|
|
31
|
-
- examples/get_account2.rb
|
|
32
|
-
- examples/get_account3.rb
|
|
33
|
-
- examples/verify_add_item.rb
|
|
34
|
-
- examples/myCredentials.rb
|
|
35
|
-
- examples/hello_world.rb
|
|
36
|
-
- examples/get_account.rb
|
|
37
|
-
- examples/test.rb
|
|
38
|
-
- examples/get_item.rb
|
|
39
|
-
- examples/add_item.rb
|
|
40
|
-
- examples/get_feedback.rb
|
|
41
|
-
- lib/eBayAPI.rb
|
|
42
|
-
- lib/eBay.rb
|
|
43
|
-
- lib/RequesterCredentialsHandler.rb
|
|
44
|
-
- lib/eBayDriver.rb
|
|
45
|
-
- test/TODO
|
|
46
|
-
- test/tc_items.rb
|
|
47
|
-
- test/tc_hello_world.rb
|
|
48
|
-
- ./lib/.document
|
|
49
|
-
- README
|
|
33
|
+
- examples/get_account2.rb
|
|
34
|
+
- examples/get_account3.rb
|
|
35
|
+
- examples/verify_add_item.rb
|
|
36
|
+
- examples/myCredentials.rb
|
|
37
|
+
- examples/hello_world.rb
|
|
38
|
+
- examples/get_account.rb
|
|
39
|
+
- examples/test.rb
|
|
40
|
+
- examples/get_item.rb
|
|
41
|
+
- examples/add_item.rb
|
|
42
|
+
- examples/get_feedback.rb
|
|
43
|
+
- lib/eBayAPI.rb
|
|
44
|
+
- lib/eBay.rb
|
|
45
|
+
- lib/RequesterCredentialsHandler.rb
|
|
46
|
+
- lib/eBayDriver.rb
|
|
47
|
+
- test/TODO
|
|
48
|
+
- test/tc_items.rb
|
|
49
|
+
- test/tc_hello_world.rb
|
|
50
|
+
- "./lib/.document"
|
|
51
|
+
- README
|
|
50
52
|
test_files: []
|
|
51
|
-
|
|
52
53
|
rdoc_options: []
|
|
53
|
-
|
|
54
54
|
extra_rdoc_files:
|
|
55
|
-
- README
|
|
55
|
+
- README
|
|
56
56
|
executables: []
|
|
57
|
-
|
|
58
57
|
extensions: []
|
|
59
|
-
|
|
60
58
|
requirements: []
|
|
61
|
-
|
|
62
|
-
dependencies: []
|
|
63
|
-
|
|
59
|
+
dependencies: []
|