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.
- checksums.yaml +4 -4
- data/README.md +8 -11
- data/nba_info.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4a4e759ad660658655d7ecb6dc093d651b3c059ee12593ce416ac6dab1d922ca
|
4
|
+
data.tar.gz: 3c8066eb8dd9b0f44091e749180b01154bc9801a1364f265541f9fb8abeff80c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 26ff531d8bf2a08bcbb6a759a47ce99ef8b3ecd09c6532678442eb38274e506e134d00dba468b9fb64edc96d8690818039b30363ec1e9d767b1b81370db26859
|
7
|
+
data.tar.gz: 93fb0bb61dc28f224faba868021d51e1ab442b3e28540cda34d72dbfca2e9c59f0dc2819ded5dee5ed66d03c17e8136105438456500d23f2b55da2652c2a70d7
|
data/README.md
CHANGED
@@ -1,25 +1,22 @@
|
|
1
|
-
NBA
|
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
|
-
|
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
|
-
|
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