opta_sd 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: b05838606d5aec71c44d53b9b36e08a6edb3b9f2
4
- data.tar.gz: a2efaf04c4d2bc3404d4303427d98e2af91ea7d9
2
+ SHA256:
3
+ metadata.gz: 9fb8500061d5525e3d2b9b88771fd2071ce6ef0206f95be13e81103f0e1c736e
4
+ data.tar.gz: dc7fb69754d26baad76cfe4a254035058049dfbcd6ba2b2df237e27cccef05a1
5
5
  SHA512:
6
- metadata.gz: 7506dbb1a6b244daf66494ffa29bccfa316bdb7195bd70bbc2d59b46a2cba39bad5b8b265c14d669b8a0a53ffcc22e32e2bffb4947b734c292e1692f11c6b3c5
7
- data.tar.gz: ee4fb65491efdf7ecb4c89195756a905b6f9bc3d2a674d8408287ced9eee31ef1b4c96b74fcfe2cd8e0a90236edc43c394886e36049269309ecad9de618294d4
6
+ metadata.gz: 990666286fe3ecc9d725db8e050ea6f397abe7e7ba2e6f796a86e0fbbe6dd203597280c71fc873d0ac5b8a08659409bdae8ce8ea0076932bf3afa53fbc6e579f
7
+ data.tar.gz: f7693f0453d509241856b31aa9a79a1f1b66fbb9f0d22c6eb1c46e0c07c4d449f77579a53f2539eb87a1adba9600eb145fc085a00f3acf681c9264647a742446
@@ -1,5 +1,10 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.1.1 - 2 June 2018
4
+
5
+ ### Changed
6
+ - Update dependencies due to potential security vulnerability in nokogiri gem
7
+
3
8
  ## 1.1 - ( Master ) - 6 May 2017
4
9
 
5
10
  ### Add
data/Gemfile CHANGED
@@ -12,7 +12,7 @@ gemspec
12
12
 
13
13
  # gem 'activesupport'
14
14
 
15
- gem 'nokogiri', '~> 1.7', '>= 1.7.0.1'
15
+ gem 'nokogiri', '~> 1.8.2'
16
16
 
17
17
  group :development, :test do
18
18
  # To use a debugger
@@ -1,39 +1,39 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- opta_sd (1.1.0)
4
+ opta_sd (1.1.1)
5
5
  json
6
6
  nokogiri (~> 1.7, >= 1.7.0.1)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- byebug (9.0.6)
12
- coderay (1.1.1)
11
+ byebug (9.1.0)
12
+ coderay (1.1.2)
13
13
  diff-lcs (1.3)
14
14
  json (2.1.0)
15
15
  method_source (0.8.2)
16
- mini_portile2 (2.1.0)
17
- nokogiri (1.7.1)
18
- mini_portile2 (~> 2.1.0)
16
+ mini_portile2 (2.3.0)
17
+ nokogiri (1.8.2)
18
+ mini_portile2 (~> 2.3.0)
19
19
  pry (0.10.4)
20
20
  coderay (~> 1.1.0)
21
21
  method_source (~> 0.8.1)
22
22
  slop (~> 3.4)
23
- rake (12.0.0)
24
- rspec (3.6.0)
25
- rspec-core (~> 3.6.0)
26
- rspec-expectations (~> 3.6.0)
27
- rspec-mocks (~> 3.6.0)
28
- rspec-core (3.6.0)
29
- rspec-support (~> 3.6.0)
30
- rspec-expectations (3.6.0)
23
+ rake (12.3.1)
24
+ rspec (3.7.0)
25
+ rspec-core (~> 3.7.0)
26
+ rspec-expectations (~> 3.7.0)
27
+ rspec-mocks (~> 3.7.0)
28
+ rspec-core (3.7.1)
29
+ rspec-support (~> 3.7.0)
30
+ rspec-expectations (3.7.0)
31
31
  diff-lcs (>= 1.2.0, < 2.0)
32
- rspec-support (~> 3.6.0)
33
- rspec-mocks (3.6.0)
32
+ rspec-support (~> 3.7.0)
33
+ rspec-mocks (3.7.0)
34
34
  diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.6.0)
36
- rspec-support (3.6.0)
35
+ rspec-support (~> 3.7.0)
36
+ rspec-support (3.7.1)
37
37
  slop (3.6.0)
38
38
 
39
39
  PLATFORMS
@@ -42,11 +42,11 @@ PLATFORMS
42
42
  DEPENDENCIES
43
43
  bundler
44
44
  byebug (~> 9.0, >= 9.0.6)
45
- nokogiri (~> 1.7, >= 1.7.0.1)
45
+ nokogiri (~> 1.8.2)
46
46
  opta_sd!
47
47
  pry (~> 0.10.4)
48
48
  rake (~> 12.0)
49
49
  rspec
50
50
 
51
51
  BUNDLED WITH
52
- 1.14.6
52
+ 1.16.1
data/README.md CHANGED
@@ -6,6 +6,8 @@
6
6
 
7
7
  Ruby API Client for OPTA SDAPI (Sports Data Soccer API)
8
8
 
9
+ ### _**WARNING: This project is not maintained anymore.**_
10
+
9
11
  ## Installation
10
12
 
11
13
  Add this line to your application's Gemfile:
@@ -1,3 +1,3 @@
1
1
  module OptaSD
2
- VERSION = '1.1.0'
2
+ VERSION = '1.1.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opta_sd
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ali Al-Sheiba
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-05-06 00:00:00.000000000 Z
11
+ date: 2018-06-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -178,7 +178,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
178
178
  version: '0'
179
179
  requirements: []
180
180
  rubyforge_project:
181
- rubygems_version: 2.4.8
181
+ rubygems_version: 2.7.3
182
182
  signing_key:
183
183
  specification_version: 4
184
184
  summary: Opta Sports Data Soccer API.