mywowarmory-ruby 0.1.0 → 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.
- data/README.rdoc +7 -1
- data/VERSION +1 -1
- data/mywowarmory-ruby.gemspec +66 -0
- metadata +4 -3
data/README.rdoc
CHANGED
|
@@ -10,10 +10,16 @@ Note that this library does not support the complete MyWoWArmory API at this tim
|
|
|
10
10
|
|
|
11
11
|
==USAGE
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
ree-1.8.7-2010.02 > response = api.get_profile('us','kul-tiras','gary')
|
|
14
|
+
=> {"id"=>1341, "path"=>"http://www.mywowarmory.com/profile.php?id=1341&api=true"}
|
|
15
|
+
ree-1.8.7-2010.02 > response
|
|
16
|
+
=> {"id"=>1341, "path"=>"http://www.mywowarmory.com/profile.php?id=1341&api=true"}
|
|
17
|
+
ree-1.8.7-2010.02 > response['id']
|
|
18
|
+
=> 1341
|
|
14
19
|
|
|
15
20
|
==FEATURES/PROBLEMS
|
|
16
21
|
|
|
22
|
+
TODO
|
|
17
23
|
|
|
18
24
|
==TEST SUITE
|
|
19
25
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{mywowarmory-ruby}
|
|
8
|
+
s.version = "0.1.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Benjamin Wong"]
|
|
12
|
+
s.date = %q{2011-09-07}
|
|
13
|
+
s.description = %q{This library uses HTTParty to provide simple, reliable access to the MyWoWArmory API. Good for building reporting scripts and simple apps. Note that this library does not support the complete MyWoWArmory API at this time. See Features/Issues below for details. }
|
|
14
|
+
s.email = %q{tkwong@railsant.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE.txt",
|
|
17
|
+
"README.rdoc"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".document",
|
|
21
|
+
"Gemfile",
|
|
22
|
+
"Gemfile.lock",
|
|
23
|
+
"LICENSE.txt",
|
|
24
|
+
"README.rdoc",
|
|
25
|
+
"Rakefile",
|
|
26
|
+
"VERSION",
|
|
27
|
+
"lib/mywowarmory.rb",
|
|
28
|
+
"mywowarmory-ruby.gemspec",
|
|
29
|
+
"test/helper.rb",
|
|
30
|
+
"test/test_mywowarmory.rb"
|
|
31
|
+
]
|
|
32
|
+
s.homepage = %q{http://github.com/railsant/mywowarmory}
|
|
33
|
+
s.licenses = ["MIT"]
|
|
34
|
+
s.require_paths = ["lib"]
|
|
35
|
+
s.rubygems_version = %q{1.3.7}
|
|
36
|
+
s.summary = %q{Ruby wrapper around the MyWoWArmory API http://www.mywowarmory.com/api}
|
|
37
|
+
|
|
38
|
+
if s.respond_to? :specification_version then
|
|
39
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
40
|
+
s.specification_version = 3
|
|
41
|
+
|
|
42
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
43
|
+
s.add_runtime_dependency(%q<httparty>, [">= 0"])
|
|
44
|
+
s.add_development_dependency(%q<shoulda>, [">= 0"])
|
|
45
|
+
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
|
|
46
|
+
s.add_development_dependency(%q<jeweler>, ["~> 1.6.4"])
|
|
47
|
+
s.add_development_dependency(%q<rcov>, [">= 0"])
|
|
48
|
+
s.add_development_dependency(%q<rdoc>, [">= 0"])
|
|
49
|
+
else
|
|
50
|
+
s.add_dependency(%q<httparty>, [">= 0"])
|
|
51
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
|
52
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
|
53
|
+
s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
|
|
54
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
|
55
|
+
s.add_dependency(%q<rdoc>, [">= 0"])
|
|
56
|
+
end
|
|
57
|
+
else
|
|
58
|
+
s.add_dependency(%q<httparty>, [">= 0"])
|
|
59
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
|
60
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
|
61
|
+
s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
|
|
62
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
|
63
|
+
s.add_dependency(%q<rdoc>, [">= 0"])
|
|
64
|
+
end
|
|
65
|
+
end
|
|
66
|
+
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mywowarmory-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.1.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Benjamin Wong
|
|
@@ -124,6 +124,7 @@ files:
|
|
|
124
124
|
- Rakefile
|
|
125
125
|
- VERSION
|
|
126
126
|
- lib/mywowarmory.rb
|
|
127
|
+
- mywowarmory-ruby.gemspec
|
|
127
128
|
- test/helper.rb
|
|
128
129
|
- test/test_mywowarmory.rb
|
|
129
130
|
has_rdoc: true
|