elekk 0.0.1 → 0.0.2
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/Rakefile +28 -17
- data/VERSION +1 -0
- data/elekk.gemspec +32 -10
- metadata +19 -41
data/Rakefile
CHANGED
@@ -1,23 +1,34 @@
|
|
1
1
|
require 'rubygems'
|
2
2
|
require 'rake'
|
3
|
-
require 'spec/rake/spectask'
|
4
|
-
require 'echoe'
|
5
3
|
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |s|
|
7
|
+
s.name = "elekk"
|
8
|
+
s.summary = "A simple library for World of Warcraft data in Ruby."
|
9
|
+
s.email = "agnoster@gmail.com"
|
10
|
+
s.homepage = "http://github.com/agnoster/elekk"
|
11
|
+
s.description = "A simple library for World of Warcraft data in Ruby."
|
12
|
+
s.authors = ["Isaac Wasileski"]
|
13
|
+
s.files = FileList["*", "{lib,spec}/**/*"]
|
14
|
+
s.add_dependency 'typhoeus'
|
15
|
+
s.add_dependency 'memcached'
|
16
|
+
s.add_dependency 'nokogiri'
|
17
|
+
s.add_dependency 'json'
|
18
|
+
end
|
19
|
+
Jeweler::GemcutterTasks.new
|
20
|
+
rescue LoadError
|
21
|
+
puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
15
22
|
end
|
16
|
-
|
17
23
|
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
24
|
+
begin
|
25
|
+
require 'spec/rake/spectask'
|
26
|
+
desc "Run all tests"
|
27
|
+
Spec::Rake::SpecTask.new('spec') do |t|
|
28
|
+
t.spec_files = FileList['spec/**/*.rb']
|
29
|
+
t.spec_opts = ["--color", "--format", "specdoc"]
|
30
|
+
t.fail_on_error = false
|
31
|
+
end
|
32
|
+
rescue LoadError
|
33
|
+
puts "No rspec installed, can't run tests"
|
23
34
|
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.2
|
data/elekk.gemspec
CHANGED
@@ -1,22 +1,46 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
1
4
|
# -*- encoding: utf-8 -*-
|
2
5
|
|
3
6
|
Gem::Specification.new do |s|
|
4
7
|
s.name = %q{elekk}
|
5
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.2"
|
6
9
|
|
7
|
-
s.required_rubygems_version = Gem::Requirement.new(">=
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
11
|
s.authors = ["Isaac Wasileski"]
|
9
12
|
s.date = %q{2010-06-04}
|
10
|
-
s.description = %q{
|
13
|
+
s.description = %q{A simple library for World of Warcraft data in Ruby.}
|
11
14
|
s.email = %q{agnoster@gmail.com}
|
12
|
-
s.
|
13
|
-
|
15
|
+
s.files = [
|
16
|
+
"CHANGELOG",
|
17
|
+
"Manifest",
|
18
|
+
"Rakefile",
|
19
|
+
"VERSION",
|
20
|
+
"elekk.gemspec",
|
21
|
+
"lib/elekk.rb",
|
22
|
+
"lib/elekk/armory.rb",
|
23
|
+
"lib/elekk/character.rb",
|
24
|
+
"lib/elekk/data.rb",
|
25
|
+
"lib/elekk/http.rb",
|
26
|
+
"lib/elekk/wowhead.rb",
|
27
|
+
"readme.md",
|
28
|
+
"spec/armory_spec.rb",
|
29
|
+
"spec/character_spec.rb",
|
30
|
+
"spec/klass_spec.rb",
|
31
|
+
"spec/wowhead_spec.rb"
|
32
|
+
]
|
14
33
|
s.homepage = %q{http://github.com/agnoster/elekk}
|
15
|
-
s.rdoc_options = ["--
|
34
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
16
35
|
s.require_paths = ["lib"]
|
17
|
-
s.rubyforge_project = %q{elekk}
|
18
36
|
s.rubygems_version = %q{1.3.7}
|
19
37
|
s.summary = %q{A simple library for World of Warcraft data in Ruby.}
|
38
|
+
s.test_files = [
|
39
|
+
"spec/armory_spec.rb",
|
40
|
+
"spec/character_spec.rb",
|
41
|
+
"spec/klass_spec.rb",
|
42
|
+
"spec/wowhead_spec.rb"
|
43
|
+
]
|
20
44
|
|
21
45
|
if s.respond_to? :specification_version then
|
22
46
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
@@ -27,19 +51,17 @@ Gem::Specification.new do |s|
|
|
27
51
|
s.add_runtime_dependency(%q<memcached>, [">= 0"])
|
28
52
|
s.add_runtime_dependency(%q<nokogiri>, [">= 0"])
|
29
53
|
s.add_runtime_dependency(%q<json>, [">= 0"])
|
30
|
-
s.add_development_dependency(%q<rspec>, [">= 0"])
|
31
54
|
else
|
32
55
|
s.add_dependency(%q<typhoeus>, [">= 0"])
|
33
56
|
s.add_dependency(%q<memcached>, [">= 0"])
|
34
57
|
s.add_dependency(%q<nokogiri>, [">= 0"])
|
35
58
|
s.add_dependency(%q<json>, [">= 0"])
|
36
|
-
s.add_dependency(%q<rspec>, [">= 0"])
|
37
59
|
end
|
38
60
|
else
|
39
61
|
s.add_dependency(%q<typhoeus>, [">= 0"])
|
40
62
|
s.add_dependency(%q<memcached>, [">= 0"])
|
41
63
|
s.add_dependency(%q<nokogiri>, [">= 0"])
|
42
64
|
s.add_dependency(%q<json>, [">= 0"])
|
43
|
-
s.add_dependency(%q<rspec>, [">= 0"])
|
44
65
|
end
|
45
66
|
end
|
67
|
+
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: elekk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 27
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 2
|
10
|
+
version: 0.0.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Isaac Wasileski
|
@@ -74,37 +74,20 @@ dependencies:
|
|
74
74
|
version: "0"
|
75
75
|
type: :runtime
|
76
76
|
version_requirements: *id004
|
77
|
-
|
78
|
-
name: rspec
|
79
|
-
prerelease: false
|
80
|
-
requirement: &id005 !ruby/object:Gem::Requirement
|
81
|
-
none: false
|
82
|
-
requirements:
|
83
|
-
- - ">="
|
84
|
-
- !ruby/object:Gem::Version
|
85
|
-
hash: 3
|
86
|
-
segments:
|
87
|
-
- 0
|
88
|
-
version: "0"
|
89
|
-
type: :development
|
90
|
-
version_requirements: *id005
|
91
|
-
description: Koala is a lightweight, flexible Ruby SDK for Facebook. It allows read/write access to the social graph via the Graph API and the older REST API, as well as support for realtime updates and OAuth and Facebook Connect authentication. Koala is fully tested and supports Net::HTTP and Typhoeus connections out of the box and can accept custom modules for other services.
|
77
|
+
description: A simple library for World of Warcraft data in Ruby.
|
92
78
|
email: agnoster@gmail.com
|
93
79
|
executables: []
|
94
80
|
|
95
81
|
extensions: []
|
96
82
|
|
97
|
-
extra_rdoc_files:
|
98
|
-
|
99
|
-
- lib/elekk.rb
|
100
|
-
- lib/elekk/armory.rb
|
101
|
-
- lib/elekk/character.rb
|
102
|
-
- lib/elekk/data.rb
|
103
|
-
- lib/elekk/http.rb
|
104
|
-
- lib/elekk/wowhead.rb
|
83
|
+
extra_rdoc_files: []
|
84
|
+
|
105
85
|
files:
|
106
86
|
- CHANGELOG
|
87
|
+
- Manifest
|
107
88
|
- Rakefile
|
89
|
+
- VERSION
|
90
|
+
- elekk.gemspec
|
108
91
|
- lib/elekk.rb
|
109
92
|
- lib/elekk/armory.rb
|
110
93
|
- lib/elekk/character.rb
|
@@ -116,20 +99,13 @@ files:
|
|
116
99
|
- spec/character_spec.rb
|
117
100
|
- spec/klass_spec.rb
|
118
101
|
- spec/wowhead_spec.rb
|
119
|
-
- Manifest
|
120
|
-
- elekk.gemspec
|
121
102
|
has_rdoc: true
|
122
103
|
homepage: http://github.com/agnoster/elekk
|
123
104
|
licenses: []
|
124
105
|
|
125
106
|
post_install_message:
|
126
107
|
rdoc_options:
|
127
|
-
- --
|
128
|
-
- --inline-source
|
129
|
-
- --title
|
130
|
-
- Elekk
|
131
|
-
- --main
|
132
|
-
- readme.md
|
108
|
+
- --charset=UTF-8
|
133
109
|
require_paths:
|
134
110
|
- lib
|
135
111
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -146,17 +122,19 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
146
122
|
requirements:
|
147
123
|
- - ">="
|
148
124
|
- !ruby/object:Gem::Version
|
149
|
-
hash:
|
125
|
+
hash: 3
|
150
126
|
segments:
|
151
|
-
-
|
152
|
-
|
153
|
-
version: "1.2"
|
127
|
+
- 0
|
128
|
+
version: "0"
|
154
129
|
requirements: []
|
155
130
|
|
156
|
-
rubyforge_project:
|
131
|
+
rubyforge_project:
|
157
132
|
rubygems_version: 1.3.7
|
158
133
|
signing_key:
|
159
134
|
specification_version: 3
|
160
135
|
summary: A simple library for World of Warcraft data in Ruby.
|
161
|
-
test_files:
|
162
|
-
|
136
|
+
test_files:
|
137
|
+
- spec/armory_spec.rb
|
138
|
+
- spec/character_spec.rb
|
139
|
+
- spec/klass_spec.rb
|
140
|
+
- spec/wowhead_spec.rb
|