covetous 0.0.1 → 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.
- data/README.md +35 -2
- data/lib/covetous/profile/career.rb +11 -0
- data/lib/covetous/version.rb +1 -1
- data/spec/covetous/{info → data}/artisan_spec.rb +0 -0
- data/spec/covetous/{info → data}/follower_spec.rb +0 -0
- data/spec/covetous/{info → data}/item_spec.rb +8 -1
- data/spec/covetous/profile/career_spec.rb +25 -0
- data/spec/fixtures/covetous_cassettes/get_hero_response.yml +639 -0
- data/spec/fixtures/covetous_cassettes/sample_hero_data.yml +638 -0
- metadata +13 -9
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: covetous
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -146,16 +146,18 @@ files:
|
|
146
146
|
- lib/covetous/profile/hero.rb
|
147
147
|
- lib/covetous/shen.rb
|
148
148
|
- lib/covetous/version.rb
|
149
|
-
- spec/covetous/
|
150
|
-
- spec/covetous/
|
151
|
-
- spec/covetous/
|
149
|
+
- spec/covetous/data/artisan_spec.rb
|
150
|
+
- spec/covetous/data/follower_spec.rb
|
151
|
+
- spec/covetous/data/item_spec.rb
|
152
152
|
- spec/covetous/profile/career_spec.rb
|
153
153
|
- spec/covetous/profile/hero_spec.rb
|
154
154
|
- spec/fixtures/covetous_cassettes/artisan_data.yml
|
155
155
|
- spec/fixtures/covetous_cassettes/career_profile.yml
|
156
156
|
- spec/fixtures/covetous_cassettes/follower_data.yml
|
157
|
+
- spec/fixtures/covetous_cassettes/get_hero_response.yml
|
157
158
|
- spec/fixtures/covetous_cassettes/hero_profile.yml
|
158
159
|
- spec/fixtures/covetous_cassettes/item_data.yml
|
160
|
+
- spec/fixtures/covetous_cassettes/sample_hero_data.yml
|
159
161
|
- spec/spec_helper.rb
|
160
162
|
homepage: http://corroded.github.com/covetous
|
161
163
|
licenses: []
|
@@ -171,7 +173,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
171
173
|
version: '0'
|
172
174
|
segments:
|
173
175
|
- 0
|
174
|
-
hash: -
|
176
|
+
hash: -82349916094321590
|
175
177
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
176
178
|
none: false
|
177
179
|
requirements:
|
@@ -180,7 +182,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
180
182
|
version: '0'
|
181
183
|
segments:
|
182
184
|
- 0
|
183
|
-
hash: -
|
185
|
+
hash: -82349916094321590
|
184
186
|
requirements: []
|
185
187
|
rubyforge_project:
|
186
188
|
rubygems_version: 1.8.23
|
@@ -188,14 +190,16 @@ signing_key:
|
|
188
190
|
specification_version: 3
|
189
191
|
summary: A Ruby wrapper for the Diablo 3 Web API
|
190
192
|
test_files:
|
191
|
-
- spec/covetous/
|
192
|
-
- spec/covetous/
|
193
|
-
- spec/covetous/
|
193
|
+
- spec/covetous/data/artisan_spec.rb
|
194
|
+
- spec/covetous/data/follower_spec.rb
|
195
|
+
- spec/covetous/data/item_spec.rb
|
194
196
|
- spec/covetous/profile/career_spec.rb
|
195
197
|
- spec/covetous/profile/hero_spec.rb
|
196
198
|
- spec/fixtures/covetous_cassettes/artisan_data.yml
|
197
199
|
- spec/fixtures/covetous_cassettes/career_profile.yml
|
198
200
|
- spec/fixtures/covetous_cassettes/follower_data.yml
|
201
|
+
- spec/fixtures/covetous_cassettes/get_hero_response.yml
|
199
202
|
- spec/fixtures/covetous_cassettes/hero_profile.yml
|
200
203
|
- spec/fixtures/covetous_cassettes/item_data.yml
|
204
|
+
- spec/fixtures/covetous_cassettes/sample_hero_data.yml
|
201
205
|
- spec/spec_helper.rb
|