steam-store-parser 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e8dfcb3b52c9fc2ddcf82ad17776a76012679906
4
- data.tar.gz: 3c78a3a7ae2388d02153b8ece06de3e4bc2e7108
3
+ metadata.gz: d78459c41fafe6531ba48996a1f4f012cfb2b7b4
4
+ data.tar.gz: ab2c13d7e1c6da0802aef73d4a6560f0db96a3c6
5
5
  SHA512:
6
- metadata.gz: c34d856b497e668f5c7204a41224502b49df18888551a560c56c5301ea8f1805adb066810b484f867224be1cb99bc8527c05d32146b8b847dc28a1479391df18
7
- data.tar.gz: 180e1986cde84ee3a53c406b4eab798f00efbdd7cc965dc15ad1934be3fb46ae899e257014103a75abc6d1583fc486c22f42a65195ce2f6de319c1ac4ea58ea5
6
+ metadata.gz: 088d36eb03dcc005d37811202298efc2f85120e1d7a50a985c67dc5d57f5f2ed58d0ced56c2fae3ca49e716829c86fb2deb6fcbd2ec8156739ba64536482a6fe
7
+ data.tar.gz: d24023d66105519b603e7e2361349bb1c92edf434a041a834029a8d6e8101946609ea4c1b8d546d321d89d21e265bd08c4d7a772748f56774bdef5767ae5a45a
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- steam-store-parser (0.1.0)
4
+ steam-store-parser (0.1.1)
5
5
  nokogiri (~> 1.6)
6
6
  rest-client (~> 1.8)
7
7
 
@@ -17,9 +17,15 @@ GEM
17
17
  mime-types (2.5)
18
18
  mini_portile (0.6.2)
19
19
  netrc (0.10.3)
20
+ nokogiri (1.6.6.2)
21
+ mini_portile (~> 0.6.0)
20
22
  nokogiri (1.6.6.2-x64-mingw32)
21
23
  mini_portile (~> 0.6.0)
22
24
  rake (10.4.2)
25
+ rest-client (1.8.0)
26
+ http-cookie (>= 1.0.2, < 2.0)
27
+ mime-types (>= 1.16, < 3.0)
28
+ netrc (~> 0.7)
23
29
  rest-client (1.8.0-x64-mingw32)
24
30
  ffi (~> 1.9)
25
31
  http-cookie (>= 1.0.2, < 2.0)
@@ -40,6 +46,7 @@ GEM
40
46
  rspec-support (3.2.2)
41
47
  unf (0.1.4)
42
48
  unf_ext
49
+ unf_ext (0.0.7.1)
43
50
  unf_ext (0.0.7.1-x64-mingw32)
44
51
 
45
52
  PLATFORMS
data/README.md CHANGED
@@ -1,8 +1,35 @@
1
1
  # steam-store-parser
2
- ## Parses Steam's web store to get lists of games from categories or keywords
2
+ *Parses Steam's web store to get lists of games from categories or keywords*
3
3
 
4
- This is my first gem, it might lack a few of the best practices but I've tried to stick to what I read.
4
+ ```ruby
5
+ # see full tag list in SteamStoreParser::Parameters
6
+ params = {:tags => [:action, :adventure], :player_amount => :singleplayer, :os => :linux}
7
+ parser = SteamStoreParser::Parser.new(params)
5
8
 
6
- Still not over yet, it's a basic working prototype with a few parsables categories.
9
+ parser.games # returns an array of games with the title of the game and the steamapp id
10
+ ```
7
11
 
8
12
  Feel free to participate !
13
+
14
+
15
+ The MIT License (MIT)
16
+
17
+ Copyright (c) 2015 Victor Viale
18
+
19
+ Permission is hereby granted, free of charge, to any person obtaining a copy
20
+ of this software and associated documentation files (the "Software"), to deal
21
+ in the Software without restriction, including without limitation the rights
22
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
23
+ copies of the Software, and to permit persons to whom the Software is
24
+ furnished to do so, subject to the following conditions:
25
+
26
+ The above copyright notice and this permission notice shall be included in
27
+ all copies or substantial portions of the Software.
28
+
29
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
30
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
31
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
32
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
33
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
34
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
35
+ THE SOFTWARE.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: steam-store-parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Victor Viale
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-16 00:00:00.000000000 Z
11
+ date: 2015-05-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -93,6 +93,7 @@ files:
93
93
  - Rakefile
94
94
  - lib/steam-store-parser.rb
95
95
  - steam-store-parser-0.1.0.gem
96
+ - steam-store-parser-0.1.1.gem
96
97
  - steam-store-parser.gemspec
97
98
  homepage: https://github.com/Koroeskohr/steam-store-parser
98
99
  licenses: