sec_mens_bball 0.1.2 → 0.1.3

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: 286370c40adbe2183890e052b8ef86dc3387f362
4
- data.tar.gz: 52e46b5e79c6fa43b2d52901294871a4a6fd8dc8
3
+ metadata.gz: 8e88051ae98905ea245f227104911ccf3374531d
4
+ data.tar.gz: 9be716c2b9049742c45ce028be43af015d27778a
5
5
  SHA512:
6
- metadata.gz: 5beddac83f53bdb9094cb9b0a365c6ed891c348ad35d08bfc10bd63f110c58ac90367e30e38f949126c9589b9ce92d7515fd3113c6809b08fd46bc9608bf1434
7
- data.tar.gz: 848757031f299e05e302ae09a429ee265e0efa62c2729fa898ab7e86b8d4e43bb80b6b67dc684af97300169320f7ee8df0996d9b78a309737d0b54a8f40aee5b
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
- After installation, go to the directory the gem was installed in and enter "bin/bball". The current Southeastern Conference Mens' Basketball Standings is then 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.
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
 
@@ -1,3 +1,3 @@
1
1
  module SecMensBball
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
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.2
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: ''