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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c9eb180c47db56dee90745f83c9296875d8eedb1
4
- data.tar.gz: b9632837ce5e8b63290dc8454e6cc3d65f591049
3
+ metadata.gz: 85e8eec0b8a5c01d0f8a20b60b81d3f9770cc3bc
4
+ data.tar.gz: 606e7b99bb87d0068bfa9f79f3b54f640328ee07
5
5
  SHA512:
6
- metadata.gz: db15f8daafcfedb012307e3b212779a51dc4baa09a6223a82f48736fa15ebdee172fb2779644435a6d100ec3aedddbfb13990f0d9dba4e3b5fdbb8567efb697a
7
- data.tar.gz: a7216c53d571bd1760bff3101f4a4e46f2dd79cb5150607e04cd2bb46e62f2ccff55935db871810cc35d85b11de92ef29945e9c56255760429996982966bdf60
6
+ metadata.gz: b9d7911aee576d10bc21f8197865d99d2bffcd87a46600e3ff3d1d97c22dcbb7a4031253f708f4ba8428ce3b5f45719997f75ed5d89cffbba481ab42ccc1da8c
7
+ data.tar.gz: f01ebd11fad9dc85e89c396360fa50a562d0e0274a271e14d80104942673aad5750e416f10298b416c2ea16697cfff74e2b9c14798d60b2f17971f721dc3a6ac
@@ -26,6 +26,7 @@
26
26
  Gemfile.lock
27
27
  .ruby-version
28
28
  .ruby-gemset
29
+ .gem
29
30
 
30
31
  ## macOS
31
32
  .DS_Store
@@ -1,10 +1,10 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- mlb_scoreboard (0.1.0)
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, running bin/mlb_scoreboard will load all MLB matchups from the previous day. The user can then 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.
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
 
@@ -1,3 +1,3 @@
1
1
  module MLBScoreboard
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
@@ -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 is a CLI gem that displays matchups and box scores from the official MLB API. Use bin/mlb_scoreboard to load all MLB matchups from the previous day. To see more details about a matchup, enter the corresponding matchup number. The details include hits, runs, and errors. At any time the user can type 'exit' to exit the program."
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.3
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 is a CLI gem that displays matchups and box scores from
116
- the official MLB API. Use bin/mlb_scoreboard to load all MLB matchups from the previous
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 is a CLI gem that displays matchups and box scores from the
168
- official MLB API. Use bin/mlb_scoreboard to load all MLB matchups from the previous
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