rbattlenet 1.1.2 → 1.1.3
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.
- checksums.yaml +4 -4
- data/README.md +7 -0
- data/lib/rbattlenet/version.rb +1 -1
- data/rbattlenet.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 372ffc57c60d3552a5d4051953d249f16e7f8752
|
|
4
|
+
data.tar.gz: 31433b91ad50943c4079b2835d1e021e28317f4d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c698a2d515058e546ec3c94bf0d635e9644f5e4455a44a03e52c9228ad2163151178d4cf2bf318b83e0b3d572ee40d95edb6634fd7e1936d982a3f4d95e6fd45
|
|
7
|
+
data.tar.gz: b3b01fad068a1b2c362702aac967d58e17d2811c8ab0aa06bf2eedd143cbf5919ed0b9b5a6315ded1790af79f38fd26cebb07e287a97efcc1396118bf46d186e
|
data/README.md
CHANGED
|
@@ -46,6 +46,13 @@ RBattlenet.set_region(region: "eu", locale: "en_GB")
|
|
|
46
46
|
character = RBattlenet::Wow::Character.find(name: "milhause", realm: "saurfang")
|
|
47
47
|
#character["name"] will give you "Milhause"
|
|
48
48
|
```
|
|
49
|
+
|
|
50
|
+
## Testing
|
|
51
|
+
```ruby
|
|
52
|
+
API=<your_api> bundle exec rspec
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
|
|
49
56
|
## Documentation
|
|
50
57
|
### [World of Warcraft](#wow)
|
|
51
58
|
|
data/lib/rbattlenet/version.rb
CHANGED
data/rbattlenet.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rbattlenet
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vincent Wong
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-03-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -86,14 +86,14 @@ dependencies:
|
|
|
86
86
|
requirements:
|
|
87
87
|
- - "~>"
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: 0.
|
|
89
|
+
version: 0.16.1
|
|
90
90
|
type: :runtime
|
|
91
91
|
prerelease: false
|
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
93
|
requirements:
|
|
94
94
|
- - "~>"
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: 0.
|
|
96
|
+
version: 0.16.1
|
|
97
97
|
description: My attempt at creating a Ruby wrapper for the Blizzard's Battle.net Community
|
|
98
98
|
Platform API.
|
|
99
99
|
email:
|
|
@@ -217,7 +217,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
217
217
|
version: '0'
|
|
218
218
|
requirements: []
|
|
219
219
|
rubyforge_project:
|
|
220
|
-
rubygems_version: 2.
|
|
220
|
+
rubygems_version: 2.6.11
|
|
221
221
|
signing_key:
|
|
222
222
|
specification_version: 4
|
|
223
223
|
summary: A wrapper for the Blizzard's Battle.net API
|