hoopscrape 1.0.4 → 1.0.5
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 +8 -8
- data/CHANGELOG.md +4 -0
- data/README.md +3 -2
- data/lib/hoopscrape/NbaPlayer.rb +3 -0
- data/lib/hoopscrape.rb +8 -8
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YzE5NTc0N2MyODcxZDM0ZjRhYTE4MmYzNTlmMzhhYzlmNDJjY2JjMA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NGVhYmNmMzA5Nzk4NDMzNDVhZjU4Mzg1NjgxM2M2ODQwNGI4NmYyYw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
Yzk1NmQ4ZjNkNGNiY2I0YTVlZTJhZDViNzczZjNjNDkwYzIxYWZkOTNkYTk1
|
10
|
+
NjE3Y2UxZWEzODBiNjlhZjE5YTlkYjRiZGIzNjVlMDhjMTNiNmMxMWM0NThl
|
11
|
+
MTMwZGRhNGM3ZTVkNTI4Y2IyODg5M2U0ZmE3MzA0Y2M2ZTU2ZTE=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NDc4ZDc4MTdkMjljMzM2YTc5MDNiZWViMDM0ZGJkZDE2MmEzNjA2YTc4OWIz
|
14
|
+
YmNjNjFjNzUyZWNmNTAwMjIwNmFjMWMxYmVmNTMzNTNjODIzZTA0YTJmN2Ri
|
15
|
+
YzRmNjE1ZDU0NDFjOTNiZmNlYjllOTVlYmJkMDUwNzkzMjllZDE=
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -49,8 +49,9 @@ It provides a number of ways to simplify data interaction, including :
|
|
49
49
|
+ Hashes - Pass data directly to ActiveRecord CRUD methods for easy database interaction.
|
50
50
|
+ String arrays - Raw data for you to manipulate as you see fit.
|
51
51
|
|
52
|
-
Version 1.
|
53
|
-
+
|
52
|
+
Version 1.1
|
53
|
+
+ NbaPlayer: Add player id to return structure
|
54
|
+
+ Documentation cleanup
|
54
55
|
|
55
56
|
+ Please report any [issues] you encounter!
|
56
57
|
|
data/lib/hoopscrape/NbaPlayer.rb
CHANGED
@@ -16,6 +16,8 @@ class NbaPlayer
|
|
16
16
|
attr_accessor :h_ft
|
17
17
|
# @return [Integer] Height (in)
|
18
18
|
attr_accessor :h_in
|
19
|
+
# @return [Integer] id
|
20
|
+
attr_accessor :id
|
19
21
|
|
20
22
|
# Read Player Data
|
21
23
|
def initialize(espn_player_id, file = '')
|
@@ -28,6 +30,7 @@ class NbaPlayer
|
|
28
30
|
end
|
29
31
|
return if doc.nil?
|
30
32
|
|
33
|
+
@id = espn_player_id.to_i
|
31
34
|
readInfo(doc)
|
32
35
|
end
|
33
36
|
|
data/lib/hoopscrape.rb
CHANGED
@@ -3,7 +3,7 @@ require_relative 'hoopscrape/requires'
|
|
3
3
|
# HoopScrape main class
|
4
4
|
class HoopScrape
|
5
5
|
# Gem Version
|
6
|
-
VERSION = '1.0.
|
6
|
+
VERSION = '1.0.5'.freeze
|
7
7
|
# initialize
|
8
8
|
def initialize(config = {})
|
9
9
|
@format = defaultFormat(config[:format])
|
@@ -23,7 +23,7 @@ class HoopScrape
|
|
23
23
|
# @param (see .boxscore)
|
24
24
|
# @return (see .boxscore)
|
25
25
|
# @example
|
26
|
-
#
|
26
|
+
# hs.boxscore(493848273)
|
27
27
|
def boxscore(game_id, f_mat = nil)
|
28
28
|
HoopScrape.boxscore game_id, (f_mat || @format)
|
29
29
|
end
|
@@ -42,8 +42,8 @@ class HoopScrape
|
|
42
42
|
# @param (see .roster)
|
43
43
|
# @return (see .roster)
|
44
44
|
# @example
|
45
|
-
#
|
46
|
-
#
|
45
|
+
# hs.roster('UTA')
|
46
|
+
# hs.roster('UTA', format: :to_structs)
|
47
47
|
def roster(team_id, options = {})
|
48
48
|
HoopScrape.roster team_id, format: (options.fetch(:format, nil) || @format)
|
49
49
|
end
|
@@ -59,7 +59,7 @@ class HoopScrape
|
|
59
59
|
# Return Array of Team Data
|
60
60
|
# @return (see .teamList)
|
61
61
|
# @example
|
62
|
-
#
|
62
|
+
# hs.teamList(:to_structs)
|
63
63
|
def teamList(f_mat = nil)
|
64
64
|
HoopScrape.teamList(f_mat || @format)
|
65
65
|
end
|
@@ -84,8 +84,8 @@ class HoopScrape
|
|
84
84
|
# @param (see .schedule)
|
85
85
|
# @return (see .schedule)
|
86
86
|
# @example
|
87
|
-
#
|
88
|
-
#
|
87
|
+
# hs.schedule('MIA') # Schedule for Latest Season Type
|
88
|
+
# hs.schedule('DET', season: 1, year: 2016) # Preseason Schedule
|
89
89
|
def schedule(team_id, options = {})
|
90
90
|
HoopScrape.schedule team_id,
|
91
91
|
season: options[:season],
|
@@ -106,7 +106,7 @@ class HoopScrape
|
|
106
106
|
# @param (see .player)
|
107
107
|
# @return (see .player)
|
108
108
|
# @example
|
109
|
-
#
|
109
|
+
# hs.player(2991473)
|
110
110
|
def player(espn_id)
|
111
111
|
HoopScrape.player espn_id
|
112
112
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hoopscrape
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Meissa Dia
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-08-
|
11
|
+
date: 2018-08-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nokogiri
|