steam_web_api 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -2
- data/lib/steam_web_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2152db28abcc8beeb04ee596c89d9034d8b669e4
|
4
|
+
data.tar.gz: 396443261d6f46784c15c23fd1ca976a8d6e45ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05945716b534ad69cf40cce8633295a406c54fcbac7cc8109e4a050971f88227993dddccd33ee5e6ec1458b27664cd436cbc310657c33e5b49fdee3a989ef833
|
7
|
+
data.tar.gz: d922428501be8a23baad1e6ff5584b225e7b99407f000579df3ce06d5652a72d96f197a02629d5970d7700f6e86bd9fca513b220cba67277675379e79ebb1c20
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# SteamWebApi
|
2
2
|
|
3
|
-
[![Build Status](https://api.travis-ci.org/Olgagr/steam-web-api.svg?branch=master)](https://api.travis-ci.org/Olgagr/steam-web-api.svg?branch=master) [![Code Climate](https://codeclimate.com/github/Olgagr/steam-web-api/badges/gpa.svg)](https://codeclimate.com/github/Olgagr/steam-web-api) [![Test Coverage](https://codeclimate.com/github/Olgagr/steam-web-api/badges/coverage.svg)](https://codeclimate.com/github/Olgagr/steam-web-api)
|
3
|
+
[![Build Status](https://api.travis-ci.org/Olgagr/steam-web-api.svg?branch=master)](https://api.travis-ci.org/Olgagr/steam-web-api.svg?branch=master) [![Code Climate](https://codeclimate.com/github/Olgagr/steam-web-api/badges/gpa.svg)](https://codeclimate.com/github/Olgagr/steam-web-api) [![Test Coverage](https://codeclimate.com/github/Olgagr/steam-web-api/badges/coverage.svg)](https://codeclimate.com/github/Olgagr/steam-web-api) [![Gem Version](https://badge.fury.io/rb/steam_web_api.svg)](http://badge.fury.io/rb/steam_web_api)
|
4
4
|
|
5
5
|
This is a gem that makes trivial interacting with the Steam Web API. It supports all methods listed here: https://developer.valvesoftware.com/wiki/Steam_Web_API and [one more](#get-list-of-all-games).
|
6
6
|
|
@@ -13,13 +13,17 @@ Gem supports Ruby: 2.0, 2.1, 2.2
|
|
13
13
|
Add this line to your application's Gemfile:
|
14
14
|
|
15
15
|
```ruby
|
16
|
-
gem 'steam_web_api'
|
16
|
+
gem 'steam_web_api'
|
17
17
|
```
|
18
18
|
|
19
19
|
And then execute:
|
20
20
|
|
21
21
|
$ bundle
|
22
22
|
|
23
|
+
Or run in the console:
|
24
|
+
|
25
|
+
$ gem install steam_web_api
|
26
|
+
|
23
27
|
## Usage
|
24
28
|
|
25
29
|
### Configuration
|