steamspy 0.0.2 → 0.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2dc5feab757b1b3a7955e3bcc77000d8779c3721
4
- data.tar.gz: e6df0ddc993b3fd8db950d5db2413ba802b553cf
3
+ metadata.gz: d9ca5c24474e4991d0e3cceb7b6ee07b129ed14c
4
+ data.tar.gz: 6f124c73a6c41befc1930841046ab4f46927d088
5
5
  SHA512:
6
- metadata.gz: daa5a3772853146d88c05cdd5878805822f175bcc4586842733388c36a5129dae2fc9caabc15aefed33b6b9b4d000e3a5838ab25530d417ccfd229a3429472d9
7
- data.tar.gz: 05b3585d4bfcaf72bf4483907a3cc09db0890445ca8dff0a9809df96e8324da821a4094f6147517236afb41487f1ee3272b2c5b12f2077dffa5cc2858561a22a
6
+ metadata.gz: ee957eff334aee060f23576a184b8bdc22311ca664272b071baf211deaba7a22b675777220dc141a2a2bc0c1ee4c360a00b024fca26d3c16d451828de21f2a2a
7
+ data.tar.gz: f51b01f9a92d94cfffe618cf67956b523647038bc87f1ded4a705c36933ff814300611500452ab04c26f2210876930d02ed944ff930f382cf6c6d3c2441cc440
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # steamspy-ruby [![Build Status](https://travis-ci.org/rbrs/steamspy-ruby.svg?branch=master)](https://travis-ci.org/rbrs/steamspy-ruby)
1
+ # steamspy-ruby [![Build Status](https://travis-ci.org/rbarysas/steamspy-ruby.svg?branch=master)](https://travis-ci.org/rbarysas/steamspy-ruby)
2
2
 
3
- A Ruby interface to the [SteamSpy](http://steamspy.com/) API.
3
+ A Ruby interface to the [SteamSpy](https://steamspy.com/) API.
4
4
 
5
5
  ### Installation
6
6
 
@@ -50,7 +50,7 @@ ss = steamspy.top100owned
50
50
  ss = steamspy.all
51
51
  ```
52
52
 
53
- More information about API could be found in the [official website](http://steamspy.com/api.php).
53
+ More information about API could be found in the [official website](https://steamspy.com/api.php).
54
54
 
55
55
  ### License
56
56
 
@@ -1,7 +1,7 @@
1
1
  module SteamSpy
2
2
  class Api
3
3
  def initialize
4
- @connection = Connection.new unless @connection
4
+ @connection ||= Connection.new
5
5
  end
6
6
 
7
7
  def appdetails(appid)
@@ -3,7 +3,7 @@ require 'httparty'
3
3
  module SteamSpy
4
4
  class Connection
5
5
  include HTTParty
6
- base_uri 'http://steamspy.com/api.php'
6
+ base_uri 'https://steamspy.com/api.php'
7
7
 
8
8
  def request(uri)
9
9
  raise ArgumentError unless uri
@@ -1,3 +1,3 @@
1
1
  module SteamSpy
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: steamspy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rolandas Barysas
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-10 00:00:00.000000000 Z
11
+ date: 2016-09-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -16,44 +16,44 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '10'
19
+ version: '11.2'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '10'
26
+ version: '11.2'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: minitest
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '5'
33
+ version: '5.9'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '5'
40
+ version: '5.9'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: httparty
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '0.13'
47
+ version: '0.14'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '0.13'
54
+ version: '0.14'
55
55
  description: A Ruby interface to the SteamSpy API
56
- email: hello@rbrs.io
56
+ email: rb@atomicflow.org
57
57
  executables: []
58
58
  extensions: []
59
59
  extra_rdoc_files: []
@@ -64,7 +64,7 @@ files:
64
64
  - lib/steamspy/api.rb
65
65
  - lib/steamspy/connection.rb
66
66
  - lib/steamspy/version.rb
67
- homepage: https://github.com/rbrs/steamspy-ruby
67
+ homepage: https://github.com/rbarysas/steamspy-ruby
68
68
  licenses:
69
69
  - MIT
70
70
  metadata: {}
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
84
84
  version: '0'
85
85
  requirements: []
86
86
  rubyforge_project:
87
- rubygems_version: 2.4.6
87
+ rubygems_version: 2.4.5.1
88
88
  signing_key:
89
89
  specification_version: 4
90
90
  summary: SteamSpy Ruby API