npb-api 0.1.7 → 0.1.8

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
2
  SHA1:
3
- metadata.gz: 8656ff8acc3a82106d8651ce9e1ff18009f746bc
4
- data.tar.gz: fbb641fc319f3a9aa5cde40849b014be26c562ed
3
+ metadata.gz: f76d503454c6b5dd3ab1ef96b6128b924fa709c5
4
+ data.tar.gz: c6da87639d2d13be348417f62dbb32061d932f4d
5
5
  SHA512:
6
- metadata.gz: fd63231db2439763412bf664f9693067f22990bd984701714f4ca487161c4b5de54a5d6deaef1cdd4af66127ba7723705da1c63e05f5dfbb942aea7e748bd781
7
- data.tar.gz: 0dd506ea6d5d702811219c68faa14a2e7c506dacab629e6287c3f590ccf974df3ae71cb816c2f826be814441f9005177b3d9dda1002b3cafbbc11258382f494b
6
+ metadata.gz: 5e35d759bbb07078e79ce44495622184f459cbda44a3aee0d7d9b16a0865fbc4f7266392d2734337d749b88278ef1b2032c2393029b78a40382999b1eaae24e8
7
+ data.tar.gz: 73a8621f7bf5689a5dc2d6a824d33fbb6cce71c120aff802543a18120d52c710212de6e908e08e90404c24b73bd61c841d37bce25ad1512c08a704164c9acc82
@@ -96,6 +96,10 @@ module NpbApi
96
96
  def on_base_percentage
97
97
  @row.children[27].text.to_f
98
98
  end
99
+
100
+ def on_base_plus_slugging
101
+ slugging_percentage + on_base_percentage
102
+ end
99
103
  end
100
104
  end
101
105
  end
@@ -1,3 +1,3 @@
1
1
  module NpbApi
2
- VERSION = '0.1.7'
2
+ VERSION = '0.1.8'
3
3
  end
data/tags ADDED
@@ -0,0 +1,235 @@
1
+ !_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
2
+ !_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
3
+ !_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/
4
+ !_TAG_PROGRAM_NAME Exuberant Ctags //
5
+ !_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
6
+ !_TAG_PROGRAM_VERSION 5.8 //
7
+ Base lib/npb-api/stats/base.rb /^ class Base$/;" c class:NpbApi.Stats
8
+ Fielding lib/npb-api/stats/fielding.rb /^ class Fielding < Base$/;" c class:NpbApi.Stats
9
+ Hitting lib/npb-api/stats/hitting.rb /^ class Hitting < Base$/;" c class:NpbApi.Stats
10
+ NpbApi lib/npb-api.rb /^module NpbApi$/;" m
11
+ NpbApi lib/npb-api/player.rb /^module NpbApi$/;" m
12
+ NpbApi lib/npb-api/stats/base.rb /^module NpbApi$/;" m
13
+ NpbApi lib/npb-api/stats/fielding.rb /^module NpbApi$/;" m
14
+ NpbApi lib/npb-api/stats/hitting.rb /^module NpbApi$/;" m
15
+ NpbApi lib/npb-api/stats/pitching.rb /^module NpbApi$/;" m
16
+ NpbApi lib/npb-api/stats/team.rb /^module NpbApi$/;" m
17
+ NpbApi lib/npb-api/version.rb /^module NpbApi$/;" m
18
+ Pitching lib/npb-api/stats/pitching.rb /^ class Pitching < Base$/;" c class:NpbApi.Stats
19
+ Player lib/npb-api/player.rb /^ class Player$/;" c class:NpbApi
20
+ Stats lib/npb-api/stats/base.rb /^ module Stats$/;" m class:NpbApi
21
+ Stats lib/npb-api/stats/fielding.rb /^ module Stats$/;" m class:NpbApi
22
+ Stats lib/npb-api/stats/hitting.rb /^ module Stats$/;" m class:NpbApi
23
+ Stats lib/npb-api/stats/pitching.rb /^ module Stats$/;" m class:NpbApi
24
+ Stats lib/npb-api/stats/team.rb /^ module Stats$/;" m class:NpbApi
25
+ Team lib/npb-api/stats/team.rb /^ class Team$/;" c class:NpbApi.Stats
26
+ TestFielding test/test_stats_fielding.rb /^class TestFielding < Minitest::Test$/;" c
27
+ TestHitting test/test_stats_hitting.rb /^class TestHitting < Minitest::Test$/;" c
28
+ TestPitching test/test_stats_pitching.rb /^class TestPitching < Minitest::Test$/;" c
29
+ TestPlayer test/test_player.rb /^class TestPlayer < Minitest::Test$/;" c
30
+ TestTeam test/test_team.rb /^class TestTeam < Minitest::Test$/;" c
31
+ UnknownLeagueError lib/npb-api/stats/base.rb /^class UnknownLeagueError < StandardError; end$/;" c
32
+ UnknownTeamError lib/npb-api/player.rb /^class UnknownTeamError < StandardError; end$/;" c
33
+ UnknownTeamError lib/npb-api/stats/base.rb /^class UnknownTeamError < StandardError; end$/;" c
34
+ all lib/npb-api/player.rb /^ def self.all$/;" F class:NpbApi.Player
35
+ all lib/npb-api/stats/base.rb /^ def self.all(year)$/;" F class:NpbApi.Stats.Base
36
+ assists lib/npb-api/stats/fielding.rb /^ def assists$/;" f class:NpbApi.Stats
37
+ at_bats lib/npb-api/stats/hitting.rb /^ def at_bats$/;" f class:NpbApi.Stats.Hitting
38
+ balks lib/npb-api/stats/pitching.rb /^ def balks$/;" f class:NpbApi.Stats.Pitching
39
+ bases_on_balls lib/npb-api/stats/hitting.rb /^ def bases_on_balls$/;" f class:NpbApi.Stats.Hitting
40
+ batting_average lib/npb-api/stats/hitting.rb /^ def batting_average$/;" f class:NpbApi.Stats.Hitting
41
+ birthday lib/npb-api/player.rb /^ def birthday$/;" f class:NpbApi.Player.all
42
+ career lib/npb-api/player.rb /^ def career$/;" f class:NpbApi.Player.all
43
+ caught_stealing lib/npb-api/stats/hitting.rb /^ def caught_stealing$/;" f class:NpbApi.Stats.Hitting
44
+ complete_games lib/npb-api/stats/pitching.rb /^ def complete_games$/;" f class:NpbApi.Stats.Pitching
45
+ detail lib/npb-api/player.rb /^ def detail$/;" f class:NpbApi.Player.all
46
+ double lib/npb-api/stats/hitting.rb /^ def double$/;" f class:NpbApi.Stats.Hitting
47
+ double_plays lib/npb-api/stats/fielding.rb /^ def double_plays$/;" f class:NpbApi.Stats
48
+ draft lib/npb-api/player.rb /^ def draft$/;" f class:NpbApi.Player.all
49
+ draws lib/npb-api/stats/team.rb /^ def draws$/;" f class:NpbApi.Stats
50
+ earned_run_average lib/npb-api/stats/pitching.rb /^ def earned_run_average$/;" f class:NpbApi.Stats.Pitching
51
+ earned_runs lib/npb-api/stats/pitching.rb /^ def earned_runs$/;" f class:NpbApi.Stats.Pitching
52
+ errors lib/npb-api/stats/fielding.rb /^ def errors$/;" f class:NpbApi.Stats
53
+ farm? lib/npb-api/stats/pitching.rb /^ def farm?$/;" f class:NpbApi.Stats.Pitching
54
+ fielding_average lib/npb-api/stats/fielding.rb /^ def fielding_average$/;" f class:NpbApi.Stats
55
+ games lib/npb-api/stats/fielding.rb /^ def games$/;" f class:NpbApi.Stats
56
+ games lib/npb-api/stats/hitting.rb /^ def games$/;" f class:NpbApi.Stats.Hitting
57
+ games lib/npb-api/stats/pitching.rb /^ def games$/;" f class:NpbApi.Stats.Pitching
58
+ games lib/npb-api/stats/team.rb /^ def games$/;" f class:NpbApi.Stats
59
+ games_behind lib/npb-api/stats/team.rb /^ def games_behind$/;" f class:NpbApi.Stats
60
+ grounded_into_double_play lib/npb-api/stats/hitting.rb /^ def grounded_into_double_play$/;" f class:NpbApi.Stats.Hitting
61
+ hand lib/npb-api/player.rb /^ def hand$/;" f class:NpbApi.Player.all
62
+ header lib/npb-api/player.rb /^ def header$/;" f class:NpbApi.Player.all
63
+ height lib/npb-api/player.rb /^ def height$/;" f class:NpbApi.Player.all
64
+ hit_by_pitch lib/npb-api/stats/hitting.rb /^ def hit_by_pitch$/;" f class:NpbApi.Stats.Hitting
65
+ hit_by_pitch lib/npb-api/stats/pitching.rb /^ def hit_by_pitch$/;" f class:NpbApi.Stats.Pitching
66
+ hits lib/npb-api/stats/hitting.rb /^ def hits$/;" f class:NpbApi.Stats.Hitting
67
+ hits lib/npb-api/stats/pitching.rb /^ def hits$/;" f class:NpbApi.Stats.Pitching
68
+ hold_points lib/npb-api/stats/pitching.rb /^ def hold_points$/;" f class:NpbApi.Stats.Pitching
69
+ holds lib/npb-api/stats/pitching.rb /^ def holds$/;" f class:NpbApi.Stats.Pitching
70
+ home_runs lib/npb-api/stats/hitting.rb /^ def home_runs$/;" f class:NpbApi.Stats.Hitting
71
+ home_runs lib/npb-api/stats/pitching.rb /^ def home_runs$/;" f class:NpbApi.Stats.Pitching
72
+ initialize lib/npb-api/player.rb /^ def initialize(id: nil, note: nil)$/;" f class:NpbApi.Player.all
73
+ initialize lib/npb-api/stats/base.rb /^ def initialize(row, team, league, year)$/;" f class:NpbApi.Stats.Base.all
74
+ initialize lib/npb-api/stats/fielding.rb /^ def initialize(row, team, league, year, position)$/;" f class:NpbApi.Stats
75
+ initialize lib/npb-api/stats/team.rb /^ def initialize(row, league, year)$/;" f class:NpbApi.Stats
76
+ innings_pitched lib/npb-api/stats/pitching.rb /^ def innings_pitched$/;" f class:NpbApi.Stats.Pitching
77
+ intentional_bases_on_balls lib/npb-api/stats/hitting.rb /^ def intentional_bases_on_balls$/;" f class:NpbApi.Stats.Hitting
78
+ intentional_walks lib/npb-api/stats/pitching.rb /^ def intentional_walks$/;" f class:NpbApi.Stats.Pitching
79
+ kana lib/npb-api/player.rb /^ def kana$/;" f class:NpbApi.Player.all
80
+ league lib/npb-api/stats/team.rb /^ def league$/;" f class:NpbApi.Stats
81
+ list lib/npb-api/player.rb /^ def self.list(team: nil)$/;" F class:NpbApi.Player
82
+ list lib/npb-api/stats/base.rb /^ def self.list(team, league, year)$/;" F class:NpbApi.Stats.Base
83
+ list lib/npb-api/stats/fielding.rb /^ def self.list(team, league, year)$/;" F class:NpbApi.Stats.Fielding
84
+ list lib/npb-api/stats/team.rb /^ def self.list(league, year)$/;" F class:NpbApi.Stats.Team
85
+ loses lib/npb-api/stats/pitching.rb /^ def loses$/;" f class:NpbApi.Stats.Pitching
86
+ loses lib/npb-api/stats/team.rb /^ def loses$/;" f class:NpbApi.Stats
87
+ name lib/npb-api/player.rb /^ def name$/;" f class:NpbApi.Player.all
88
+ new_position lib/npb-api/stats/fielding.rb /^ def self.new_position(row)$/;" F class:NpbApi.Stats
89
+ number lib/npb-api/player.rb /^ def number$/;" f class:NpbApi.Player.all
90
+ on_base_percentage lib/npb-api/stats/hitting.rb /^ def on_base_percentage$/;" f class:NpbApi.Stats.Hitting
91
+ on_base_plus_slugging lib/npb-api/stats/hitting.rb /^ def on_base_plus_slugging$/;" f class:NpbApi.Stats.Hitting
92
+ passed_ball lib/npb-api/stats/fielding.rb /^ def passed_ball$/;" f class:NpbApi.Stats
93
+ player lib/npb-api/stats/fielding.rb /^ def player$/;" f class:NpbApi.Stats
94
+ player lib/npb-api/stats/hitting.rb /^ def player$/;" f class:NpbApi.Stats.Hitting
95
+ player lib/npb-api/stats/pitching.rb /^ def player$/;" f class:NpbApi.Stats.Pitching
96
+ position lib/npb-api/player.rb /^ def position$/;" f class:NpbApi.Player.all
97
+ put_outs lib/npb-api/stats/fielding.rb /^ def put_outs$/;" f class:NpbApi.Stats
98
+ runs lib/npb-api/stats/hitting.rb /^ def runs$/;" f class:NpbApi.Stats.Hitting
99
+ runs lib/npb-api/stats/pitching.rb /^ def runs$/;" f class:NpbApi.Stats.Pitching
100
+ runs_batted_in lib/npb-api/stats/hitting.rb /^ def runs_batted_in$/;" f class:NpbApi.Stats.Hitting
101
+ sacrifice_flies lib/npb-api/stats/hitting.rb /^ def sacrifice_flies$/;" f class:NpbApi.Stats.Hitting
102
+ sacrifice_hits lib/npb-api/stats/hitting.rb /^ def sacrifice_hits$/;" f class:NpbApi.Stats.Hitting
103
+ saves lib/npb-api/stats/pitching.rb /^ def saves$/;" f class:NpbApi.Stats.Pitching
104
+ setup test/test_player.rb /^ def setup$/;" f class:TestPlayer
105
+ setup test/test_stats_fielding.rb /^ def setup$/;" f class:TestFielding
106
+ setup test/test_stats_hitting.rb /^ def setup$/;" f class:TestHitting
107
+ setup test/test_stats_pitching.rb /^ def setup$/;" f class:TestPitching
108
+ setup test/test_team.rb /^ def setup$/;" f class:TestTeam
109
+ shutouts lib/npb-api/stats/pitching.rb /^ def shutouts$/;" f class:NpbApi.Stats.Pitching
110
+ slugging_percentage lib/npb-api/stats/hitting.rb /^ def slugging_percentage$/;" f class:NpbApi.Stats.Hitting
111
+ source lib/npb-api/player.rb /^ def self.source(team)$/;" F class:NpbApi.Player.all
112
+ source lib/npb-api/player.rb /^ def source$/;" f class:NpbApi.Player.all
113
+ source lib/npb-api/stats/base.rb /^ def self.source(team, league, year)$/;" F class:NpbApi.Stats.Base.all
114
+ source lib/npb-api/stats/team.rb /^ def self.source(league, year)$/;" F class:NpbApi.Stats
115
+ stolen_bases lib/npb-api/stats/hitting.rb /^ def stolen_bases$/;" f class:NpbApi.Stats.Hitting
116
+ strikeouts lib/npb-api/stats/hitting.rb /^ def strikeouts$/;" f class:NpbApi.Stats.Hitting
117
+ strikeouts lib/npb-api/stats/pitching.rb /^ def strikeouts$/;" f class:NpbApi.Stats.Pitching
118
+ ststats lib/npb-api/stats/fielding.rb /^ def self.ststats?(row)$/;" F class:NpbApi.Stats
119
+ team lib/npb-api/player.rb /^ def team$/;" f class:NpbApi.Player.all
120
+ team lib/npb-api/stats/team.rb /^ def team$/;" f class:NpbApi.Stats
121
+ test_all test/test_player.rb /^ def test_all$/;" f class:TestPlayer
122
+ test_all test/test_stats_fielding.rb /^ def test_all$/;" f class:TestFielding
123
+ test_all test/test_stats_hitting.rb /^ def test_all$/;" f class:TestHitting
124
+ test_all test/test_stats_pitching.rb /^ def test_all$/;" f class:TestPitching
125
+ test_assists test/test_stats_fielding.rb /^ def test_assists$/;" f class:TestFielding
126
+ test_at_bats test/test_stats_hitting.rb /^ def test_at_bats$/;" f class:TestHitting
127
+ test_balks test/test_stats_pitching.rb /^ def test_balks$/;" f class:TestPitching
128
+ test_bases_on_balls test/test_stats_hitting.rb /^ def test_bases_on_balls$/;" f class:TestHitting
129
+ test_batting_average test/test_stats_hitting.rb /^ def test_batting_average$/;" f class:TestHitting
130
+ test_birthday test/test_player.rb /^ def test_birthday$/;" f class:TestPlayer
131
+ test_career test/test_player.rb /^ def test_career$/;" f class:TestPlayer
132
+ test_caught_stealing test/test_stats_hitting.rb /^ def test_caught_stealing$/;" f class:TestHitting
133
+ test_complete_games test/test_stats_pitching.rb /^ def test_complete_games$/;" f class:TestPitching
134
+ test_double test/test_stats_hitting.rb /^ def test_double$/;" f class:TestHitting
135
+ test_double_plays test/test_stats_fielding.rb /^ def test_double_plays$/;" f class:TestFielding
136
+ test_draft test/test_player.rb /^ def test_draft$/;" f class:TestPlayer
137
+ test_draws test/test_team.rb /^ def test_draws$/;" f class:TestTeam
138
+ test_earned_run_average test/test_stats_pitching.rb /^ def test_earned_run_average$/;" f class:TestPitching
139
+ test_earned_runs test/test_stats_pitching.rb /^ def test_earned_runs$/;" f class:TestPitching
140
+ test_errors test/test_stats_fielding.rb /^ def test_errors$/;" f class:TestFielding
141
+ test_fielding_average test/test_stats_fielding.rb /^ def test_fielding_average$/;" f class:TestFielding
142
+ test_games test/test_stats_fielding.rb /^ def test_games$/;" f class:TestFielding
143
+ test_games test/test_stats_hitting.rb /^ def test_games$/;" f class:TestHitting
144
+ test_games test/test_stats_pitching.rb /^ def test_games$/;" f class:TestPitching
145
+ test_games test/test_team.rb /^ def test_games$/;" f class:TestTeam
146
+ test_games_behind test/test_team.rb /^ def test_games_behind$/;" f class:TestTeam
147
+ test_grounded_into_double_play test/test_stats_hitting.rb /^ def test_grounded_into_double_play$/;" f class:TestHitting
148
+ test_hand test/test_player.rb /^ def test_hand$/;" f class:TestPlayer
149
+ test_height test/test_player.rb /^ def test_height$/;" f class:TestPlayer
150
+ test_hit_by_pitch test/test_stats_hitting.rb /^ def test_hit_by_pitch$/;" f class:TestHitting
151
+ test_hit_by_pitch test/test_stats_pitching.rb /^ def test_hit_by_pitch$/;" f class:TestPitching
152
+ test_hits test/test_stats_hitting.rb /^ def test_hits$/;" f class:TestHitting
153
+ test_hits test/test_stats_pitching.rb /^ def test_hits$/;" f class:TestPitching
154
+ test_hold_points test/test_stats_pitching.rb /^ def test_hold_points$/;" f class:TestPitching
155
+ test_holds test/test_stats_pitching.rb /^ def test_holds$/;" f class:TestPitching
156
+ test_home_runs test/test_stats_hitting.rb /^ def test_home_runs$/;" f class:TestHitting
157
+ test_home_runs test/test_stats_pitching.rb /^ def test_home_runs$/;" f class:TestPitching
158
+ test_innings_pitched test/test_stats_pitching.rb /^ def test_innings_pitched$/;" f class:TestPitching
159
+ test_intentional_bases_on_balls test/test_stats_hitting.rb /^ def test_intentional_bases_on_balls$/;" f class:TestHitting
160
+ test_intentional_walks test/test_stats_pitching.rb /^ def test_intentional_walks$/;" f class:TestPitching
161
+ test_kana test/test_player.rb /^ def test_kana$/;" f class:TestPlayer
162
+ test_league test/test_stats_fielding.rb /^ def test_league$/;" f class:TestFielding
163
+ test_league test/test_stats_hitting.rb /^ def test_league$/;" f class:TestHitting
164
+ test_league test/test_stats_pitching.rb /^ def test_league$/;" f class:TestPitching
165
+ test_league test/test_team.rb /^ def test_league$/;" f class:TestTeam
166
+ test_list test/test_player.rb /^ def test_list$/;" f class:TestPlayer
167
+ test_list test/test_stats_fielding.rb /^ def test_list$/;" f class:TestFielding
168
+ test_list test/test_stats_hitting.rb /^ def test_list$/;" f class:TestHitting
169
+ test_list test/test_stats_pitching.rb /^ def test_list$/;" f class:TestPitching
170
+ test_loses test/test_stats_pitching.rb /^ def test_loses$/;" f class:TestPitching
171
+ test_loses test/test_team.rb /^ def test_loses$/;" f class:TestTeam
172
+ test_name test/test_player.rb /^ def test_name$/;" f class:TestPlayer
173
+ test_note test/test_player.rb /^ def test_note$/;" f class:TestPlayer
174
+ test_number test/test_player.rb /^ def test_number$/;" f class:TestPlayer
175
+ test_on_base_percentage test/test_stats_hitting.rb /^ def test_on_base_percentage$/;" f class:TestHitting
176
+ test_on_base_plus_slugging test/test_stats_hitting.rb /^ def test_on_base_plus_slugging$/;" f class:TestHitting
177
+ test_passed_ball test/test_stats_fielding.rb /^ def test_passed_ball$/;" f class:TestFielding
178
+ test_player test/test_stats_fielding.rb /^ def test_player$/;" f class:TestFielding
179
+ test_player test/test_stats_hitting.rb /^ def test_player$/;" f class:TestHitting
180
+ test_player test/test_stats_pitching.rb /^ def test_player$/;" f class:TestPitching
181
+ test_position test/test_player.rb /^ def test_position$/;" f class:TestPlayer
182
+ test_position test/test_stats_fielding.rb /^ def test_position$/;" f class:TestFielding
183
+ test_put_outs test/test_stats_fielding.rb /^ def test_put_outs$/;" f class:TestFielding
184
+ test_runs test/test_stats_hitting.rb /^ def test_runs$/;" f class:TestHitting
185
+ test_runs test/test_stats_pitching.rb /^ def test_runs$/;" f class:TestPitching
186
+ test_runs_batted_in test/test_stats_hitting.rb /^ def test_runs_batted_in$/;" f class:TestHitting
187
+ test_sacrifice_flies test/test_stats_hitting.rb /^ def test_sacrifice_flies$/;" f class:TestHitting
188
+ test_sacrifice_hits test/test_stats_hitting.rb /^ def test_sacrifice_hits$/;" f class:TestHitting
189
+ test_saves test/test_stats_pitching.rb /^ def test_saves$/;" f class:TestPitching
190
+ test_shutouts test/test_stats_pitching.rb /^ def test_shutouts$/;" f class:TestPitching
191
+ test_slugging_percentage test/test_stats_hitting.rb /^ def test_slugging_percentage$/;" f class:TestHitting
192
+ test_stolen_bases test/test_stats_hitting.rb /^ def test_stolen_bases$/;" f class:TestHitting
193
+ test_strikeouts test/test_stats_hitting.rb /^ def test_strikeouts$/;" f class:TestHitting
194
+ test_strikeouts test/test_stats_pitching.rb /^ def test_strikeouts$/;" f class:TestPitching
195
+ test_team test/test_player.rb /^ def test_team$/;" f class:TestPlayer
196
+ test_team test/test_stats_fielding.rb /^ def test_team$/;" f class:TestFielding
197
+ test_team test/test_stats_hitting.rb /^ def test_team$/;" f class:TestHitting
198
+ test_team test/test_stats_pitching.rb /^ def test_team$/;" f class:TestPitching
199
+ test_team test/test_team.rb /^ def test_team$/;" f class:TestTeam
200
+ test_total_bases test/test_stats_hitting.rb /^ def test_total_bases$/;" f class:TestHitting
201
+ test_total_batters_faced test/test_stats_pitching.rb /^ def test_total_batters_faced$/;" f class:TestPitching
202
+ test_total_plate_appearances test/test_stats_hitting.rb /^ def test_total_plate_appearances$/;" f class:TestHitting
203
+ test_triple test/test_stats_hitting.rb /^ def test_triple$/;" f class:TestHitting
204
+ test_walks test/test_stats_pitching.rb /^ def test_walks$/;" f class:TestPitching
205
+ test_weight test/test_player.rb /^ def test_weight$/;" f class:TestPlayer
206
+ test_wild_pitches test/test_stats_pitching.rb /^ def test_wild_pitches$/;" f class:TestPitching
207
+ test_winning_percentage test/test_stats_pitching.rb /^ def test_winning_percentage$/;" f class:TestPitching
208
+ test_winning_percentage test/test_team.rb /^ def test_winning_percentage$/;" f class:TestTeam
209
+ test_wins test/test_stats_pitching.rb /^ def test_wins$/;" f class:TestPitching
210
+ test_wins test/test_team.rb /^ def test_wins$/;" f class:TestTeam
211
+ test_without_walking test/test_stats_pitching.rb /^ def test_without_walking$/;" f class:TestPitching
212
+ test_year test/test_stats_fielding.rb /^ def test_year$/;" f class:TestFielding
213
+ test_year test/test_stats_hitting.rb /^ def test_year$/;" f class:TestHitting
214
+ test_year test/test_stats_pitching.rb /^ def test_year$/;" f class:TestPitching
215
+ test_year test/test_team.rb /^ def test_year$/;" f class:TestTeam
216
+ total_bases lib/npb-api/stats/hitting.rb /^ def total_bases$/;" f class:NpbApi.Stats.Hitting
217
+ total_batters_faced lib/npb-api/stats/pitching.rb /^ def total_batters_faced$/;" f class:NpbApi.Stats.Pitching
218
+ total_plate_appearances lib/npb-api/stats/hitting.rb /^ def total_plate_appearances$/;" f class:NpbApi.Stats.Hitting
219
+ triple lib/npb-api/stats/hitting.rb /^ def triple$/;" f class:NpbApi.Stats.Hitting
220
+ url lib/npb-api/player.rb /^ def self.url(team)$/;" F class:NpbApi.Player.all
221
+ url lib/npb-api/player.rb /^ def url$/;" f class:NpbApi.Player.all
222
+ url lib/npb-api/stats/base.rb /^ def self.url(team, league, year)$/;" F class:NpbApi.Stats.Base.all
223
+ url lib/npb-api/stats/team.rb /^ def self.url(league, year)$/;" F class:NpbApi.Stats
224
+ url_key lib/npb-api/stats/base.rb /^ def self.url_key$/;" F class:NpbApi.Stats.Base.all
225
+ url_key lib/npb-api/stats/fielding.rb /^ def self.url_key$/;" F class:NpbApi.Stats
226
+ url_key lib/npb-api/stats/hitting.rb /^ def self.url_key$/;" F class:NpbApi.Stats.Hitting
227
+ url_key lib/npb-api/stats/pitching.rb /^ def self.url_key$/;" F class:NpbApi.Stats.Pitching
228
+ walks lib/npb-api/stats/pitching.rb /^ def walks$/;" f class:NpbApi.Stats.Pitching
229
+ weight lib/npb-api/player.rb /^ def weight$/;" f class:NpbApi.Player.all
230
+ wild_pitches lib/npb-api/stats/pitching.rb /^ def wild_pitches$/;" f class:NpbApi.Stats.Pitching
231
+ winning_percentage lib/npb-api/stats/pitching.rb /^ def winning_percentage$/;" f class:NpbApi.Stats.Pitching
232
+ winning_percentage lib/npb-api/stats/team.rb /^ def winning_percentage$/;" f class:NpbApi.Stats
233
+ wins lib/npb-api/stats/pitching.rb /^ def wins$/;" f class:NpbApi.Stats.Pitching
234
+ wins lib/npb-api/stats/team.rb /^ def wins$/;" f class:NpbApi.Stats
235
+ without_walking lib/npb-api/stats/pitching.rb /^ def without_walking$/;" f class:NpbApi.Stats.Pitching
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: npb-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - ohtsuka
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-08-04 00:00:00.000000000 Z
11
+ date: 2015-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -104,6 +104,7 @@ files:
104
104
  - lib/npb-api/stats/team.rb
105
105
  - lib/npb-api/version.rb
106
106
  - npb-api.gemspec
107
+ - tags
107
108
  homepage: http://example.com
108
109
  licenses:
109
110
  - me
@@ -124,9 +125,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
124
125
  version: '0'
125
126
  requirements: []
126
127
  rubyforge_project:
127
- rubygems_version: 2.4.8
128
+ rubygems_version: 2.4.5.1
128
129
  signing_key:
129
130
  specification_version: 4
130
131
  summary: Write a short summary, because Rubygems requires one.
131
132
  test_files: []
132
- has_rdoc: