sec_mens_bball 0.1.2 → 0.1.3
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/README.md +13 -1
- data/lib/sec_mens_bball/version.rb +1 -1
- data/sec_mens_bball-0.1.1.gem +0 -0
- data/sec_mens_bball-0.1.2.gem +0 -0
- metadata +3 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8e88051ae98905ea245f227104911ccf3374531d
|
|
4
|
+
data.tar.gz: 9be716c2b9049742c45ce028be43af015d27778a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf12f89de71e30aab88e97617949f0841750a428a3aa3daa87a7589fcfb16af06683d5ccade597663874d7dc123653091ed0b5590c130450adeaec972333e57e
|
|
7
|
+
data.tar.gz: 433cb9d1bba825c439f310372dbb026f547ae54c4c63a9e0c16820e8a2c3385513196ce3f473a87177ec49c02f97f5bfe8fe41e6c3e3a6264f971a22dea04123
|
data/README.md
CHANGED
|
@@ -20,7 +20,19 @@ Or install it yourself as:
|
|
|
20
20
|
|
|
21
21
|
## Usage
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
To run the code in terminal:
|
|
24
|
+
|
|
25
|
+
Open IRB
|
|
26
|
+
|
|
27
|
+
Require the gem with:
|
|
28
|
+
`require "sec_mens_bball"
|
|
29
|
+
|
|
30
|
+
Launch the gem with:
|
|
31
|
+
`CLI.new.call`
|
|
32
|
+
|
|
33
|
+
To run the code in a ruby file, add `require "sec_mens_bball"` to the top of the file and `CLI.new.call` to the body, then execute the file.
|
|
34
|
+
|
|
35
|
+
Once the program is running, the current Southeastern Conference Mens' Basketball Standings will then be displayed in rank order from 1-14. Enter the number of a team to display that teams season's schedule. Included in the display is the game's date, matchup, and result, if game has already been played and time, if game is yet to be played. Matchup includes opponents name and whether the game is home (vs) or away (@). Result includes win or loss and the score. Once a number has been entered to see a team's season schedule, enter another number to see a different team's schedule. Enter the word "league" to see the league standings again, and enter 'exit' to leave.
|
|
24
36
|
|
|
25
37
|
## Development
|
|
26
38
|
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sec_mens_bball
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- halfields
|
|
@@ -92,6 +92,8 @@ files:
|
|
|
92
92
|
- lib/sec_mens_bball/team.rb
|
|
93
93
|
- lib/sec_mens_bball/version.rb
|
|
94
94
|
- sec_mens_bball-0.1.0.gem
|
|
95
|
+
- sec_mens_bball-0.1.1.gem
|
|
96
|
+
- sec_mens_bball-0.1.2.gem
|
|
95
97
|
- sec_mens_bball.gemspec
|
|
96
98
|
- spec.md
|
|
97
99
|
homepage: ''
|