overwatch-stats 0.1.1 → 0.1.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.
- checksums.yaml +4 -4
- data/README.md +17 -1
- data/lib/overwatch/version.rb +1 -1
- data/overwatch-stats-0.1.1.gem +0 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 17e0fb2d14fd5db190969665d104468156ace458
|
4
|
+
data.tar.gz: 3463a3392b0a3938fd293f5b1bbae122a90b1eb3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf748545df7bd6033ab428d254939d024b344f45b33537cbfd6b65cdd71dedca8b3452b40bfca2cc0d575421f65998df59aeb2da2127b79d98fce73ff5b043c4
|
7
|
+
data.tar.gz: e26c85e1cd0081a2f25118ca93e5917f79edbc5dbd5fe451f1b2609601a638fb649e44ed6d115f3d15109a865f88575e1cee3ad674d333fefb46e7c152afbdc7
|
data/README.md
CHANGED
@@ -1 +1,17 @@
|
|
1
|
-
#
|
1
|
+
# Overwatch stats
|
2
|
+
This is a gem that can be used to retrieve information about Overwatch players by scraping Blizzard's website and be returns as JSON. Here are some of the available commands:
|
3
|
+
|
4
|
+
```ruby
|
5
|
+
# Battle.net tags are case sensitive. Also the # must be replaced by a -
|
6
|
+
|
7
|
+
Overwatch.fetch_profile(system, region, battle_net_tag) # 'pc', 'us', 'Battlenettag-1245'
|
8
|
+
|
9
|
+
#Does not accept special characters and is case sensitive
|
10
|
+
Overwatch.fetch_hero(system, region, battle_net_tag) # 'pc', 'us', 'Battlenettag-1245', 'Soldier76'
|
11
|
+
|
12
|
+
Overwatch.fetch_cumulative_hero_data(system, region, battle_net_tag) # 'pc', 'us', 'Battlenettag-1245'
|
13
|
+
|
14
|
+
Overwatch.fetch_achievements(system, region, battle_net_tag) # 'pc', 'us', 'Battlenettag-1245'
|
15
|
+
|
16
|
+
Overwatch.fetch_patch_notes # Returns all the patch notes
|
17
|
+
```
|
data/lib/overwatch/version.rb
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: overwatch-stats
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- camdenbrown
|
@@ -87,6 +87,7 @@ files:
|
|
87
87
|
- lib/overwatch.rb
|
88
88
|
- lib/overwatch/version.rb
|
89
89
|
- overwatch-0.1.0.gem
|
90
|
+
- overwatch-stats-0.1.1.gem
|
90
91
|
- overwatch_stats.gemspec
|
91
92
|
homepage: https://github.com/camdenbrown/overwatch_stats
|
92
93
|
licenses:
|