nba_information 0.2.0 → 1.0.0

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -11
  3. data/nba_info.gemspec +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 619bf28b8ac4b9ba0afbbcb3758c0759d101e17712b566d9da7ca9589242a2c8
4
- data.tar.gz: 9312cfe921ed9e35e27d7a750e92768f52ec98985ab597d44b916ed315bd79f4
3
+ metadata.gz: 4a4e759ad660658655d7ecb6dc093d651b3c059ee12593ce416ac6dab1d922ca
4
+ data.tar.gz: 3c8066eb8dd9b0f44091e749180b01154bc9801a1364f265541f9fb8abeff80c
5
5
  SHA512:
6
- metadata.gz: e661c33c6791f098b155d2d6d246f643969234b3da9ac74ae128cb2131a7c4a52a9c59792fc0c98095527fc27a89d036900f274d37fe40933faffbc522129458
7
- data.tar.gz: 8d84278a9d34582c06ffbcfcd0be8005e6bc385952d13f23e746ee756bb33c85b29f0f9265506ee568deb3d83977866122f70c39ab1f96ad6c78e5e0731bb650
6
+ metadata.gz: 26ff531d8bf2a08bcbb6a759a47ce99ef8b3ecd09c6532678442eb38274e506e134d00dba468b9fb64edc96d8690818039b30363ec1e9d767b1b81370db26859
7
+ data.tar.gz: 93fb0bb61dc28f224faba868021d51e1ab442b3e28540cda34d72dbfca2e9c59f0dc2819ded5dee5ed66d03c17e8136105438456500d23f2b55da2652c2a70d7
data/README.md CHANGED
@@ -1,25 +1,22 @@
1
- NBA Info Gem
1
+ NBA Information Gem
2
2
 
3
3
  This is a CLI gem for the NBA. Check the current conference standings, view the schedule of games for today,
4
4
  or view your favorite teams stats. All standings, stats, and schedules are updated in realtime.
5
5
 
6
6
  ## Installation
7
-
8
-
7
+ From the command line:
8
+ <pre><code>gem install nba_information</code></pre>
9
9
 
10
10
  ## Usage
11
11
 
12
- TODO: Write usage instructions here
12
+ Once installed, type
13
+ <pre><code>nba-info</code></pre>
14
+ and follow the instructions from there.
13
15
 
14
16
  ## Development
15
17
 
16
- After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
17
-
18
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
19
-
20
- ## Contributing
21
-
22
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/nba_info.
18
+ Runtime Dependencies:
19
+ - nokogiri
23
20
 
24
21
  ## License
25
22
 
data/nba_info.gemspec CHANGED
@@ -5,7 +5,7 @@ require "nba_info/version"
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "nba_information"
8
- spec.version = "0.2.0"
8
+ spec.version = "1.0.0"
9
9
  spec.authors = ["RSchaubeck"]
10
10
  spec.email = ["richard.schaubeck@gmail.com"]
11
11
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nba_information
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - RSchaubeck