mlb_scoreboard 0.1.3 → 0.1.4
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 +4 -4
- data/.git-ignore +1 -0
- data/Gemfile.lock +4 -4
- data/README.md +1 -1
- data/lib/version.rb +1 -1
- data/mlb_scoreboard.gemspec +2 -2
- metadata +5 -13
- data/pkg/mlb_scoreboard-0.1.2.gem +0 -0
- data/pkg/mlb_scoreboard-0.1.3.gem +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 85e8eec0b8a5c01d0f8a20b60b81d3f9770cc3bc
|
|
4
|
+
data.tar.gz: 606e7b99bb87d0068bfa9f79f3b54f640328ee07
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b9d7911aee576d10bc21f8197865d99d2bffcd87a46600e3ff3d1d97c22dcbb7a4031253f708f4ba8428ce3b5f45719997f75ed5d89cffbba481ab42ccc1da8c
|
|
7
|
+
data.tar.gz: f01ebd11fad9dc85e89c396360fa50a562d0e0274a271e14d80104942673aad5750e416f10298b416c2ea16697cfff74e2b9c14798d60b2f17971f721dc3a6ac
|
data/.git-ignore
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
mlb_scoreboard (0.1.
|
|
5
|
-
json (~> 1.8.3)
|
|
6
|
-
nokogiri (~> 1.6.8)
|
|
7
|
-
terminal-table (~> 1.6.0)
|
|
4
|
+
mlb_scoreboard (0.1.3)
|
|
5
|
+
json (~> 1.8, >= 1.8.3)
|
|
6
|
+
nokogiri (~> 1.6, >= 1.6.8)
|
|
7
|
+
terminal-table (~> 1.6, >= 1.6.0)
|
|
8
8
|
|
|
9
9
|
GEM
|
|
10
10
|
remote: https://rubygems.org/
|
data/README.md
CHANGED
|
@@ -25,7 +25,7 @@ Or install it yourself as:
|
|
|
25
25
|
|
|
26
26
|
## Usage
|
|
27
27
|
|
|
28
|
-
Once installed,
|
|
28
|
+
Once installed, include mlb_scoreboard in your app by using `require 'mlb_scoreboard'` in your environment. After it is required, use MLBScoreboard::CLI.new.start to start the CLI or use MLBScoreboard::Matchups.today to directly access the list of matchups. Upon the matchups being listed, the user can type a number that corresponds to a matchup and see more details about that matchup in a formatted table. The details include hits, runs, and errors. At any time the user can type 'exit' to exit the program.
|
|
29
29
|
|
|
30
30
|
## Development
|
|
31
31
|
|
data/lib/version.rb
CHANGED
data/mlb_scoreboard.gemspec
CHANGED
|
@@ -9,12 +9,12 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["Steve Frost"]
|
|
10
10
|
spec.email = ["ffrostt@gmail.com"]
|
|
11
11
|
|
|
12
|
-
spec.summary = "MLB Scoreboard
|
|
12
|
+
spec.summary = "MLB Scoreboard displays matchups and box scores from the official MLB API. See GitHub or included README.md for more information."
|
|
13
13
|
spec.description = spec.summary
|
|
14
14
|
spec.homepage = "https://github.com/steveafrost/scoreboard-cli-gem"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
|
17
|
-
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|pkg)/}) }
|
|
18
18
|
spec.bindir = "exe"
|
|
19
19
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
20
20
|
spec.require_paths = ["lib"]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mlb_scoreboard
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Steve Frost
|
|
@@ -112,11 +112,8 @@ dependencies:
|
|
|
112
112
|
- - ">="
|
|
113
113
|
- !ruby/object:Gem::Version
|
|
114
114
|
version: 1.8.3
|
|
115
|
-
description: MLB Scoreboard
|
|
116
|
-
|
|
117
|
-
day. To see more details about a matchup, enter the corresponding matchup number.
|
|
118
|
-
The details include hits, runs, and errors. At any time the user can type 'exit'
|
|
119
|
-
to exit the program.
|
|
115
|
+
description: MLB Scoreboard displays matchups and box scores from the official MLB
|
|
116
|
+
API. See GitHub or included README.md for more information.
|
|
120
117
|
email:
|
|
121
118
|
- ffrostt@gmail.com
|
|
122
119
|
executables: []
|
|
@@ -139,8 +136,6 @@ files:
|
|
|
139
136
|
- lib/mlb_scoreboard.rb
|
|
140
137
|
- lib/version.rb
|
|
141
138
|
- mlb_scoreboard.gemspec
|
|
142
|
-
- pkg/mlb_scoreboard-0.1.2.gem
|
|
143
|
-
- pkg/mlb_scoreboard-0.1.3.gem
|
|
144
139
|
homepage: https://github.com/steveafrost/scoreboard-cli-gem
|
|
145
140
|
licenses:
|
|
146
141
|
- MIT
|
|
@@ -164,9 +159,6 @@ rubyforge_project:
|
|
|
164
159
|
rubygems_version: 2.4.5.1
|
|
165
160
|
signing_key:
|
|
166
161
|
specification_version: 4
|
|
167
|
-
summary: MLB Scoreboard
|
|
168
|
-
|
|
169
|
-
day. To see more details about a matchup, enter the corresponding matchup number.
|
|
170
|
-
The details include hits, runs, and errors. At any time the user can type 'exit'
|
|
171
|
-
to exit the program.
|
|
162
|
+
summary: MLB Scoreboard displays matchups and box scores from the official MLB API.
|
|
163
|
+
See GitHub or included README.md for more information.
|
|
172
164
|
test_files: []
|
|
Binary file
|
|
Binary file
|