billboard_hot_100_CLI 0.1.0 → 0.1.1
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 +2 -2
- data/billboard_hot_100_CLI-0.1.0.gem +0 -0
- data/billboard_hot_100_CLI.gemspec +37 -0
- data/lib/billboard_hot_100/version.rb +1 -1
- metadata +3 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 901700f808d1eb35b739c4702cbb4ad2d83bb4d2d246a614e2b584cfa697b64e
|
|
4
|
+
data.tar.gz: 7bdb21f1f4e523920c8c51368d5e580e938d12bab9e6f67b72abc6ee044ac67d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f0af41eaa04ca2d91551f843ad1b31f623add316fcfb6617fb4ee99c8c052aba59b56a3d496ce4ecf4fb943858d0ffb685a1472ca6ebc9eecff5e7a2bcf57d3a
|
|
7
|
+
data.tar.gz: 0c89ea87c961c13e5ec4ff9a0e4427297c7724eb0f2dbd06bb560f4d8398088e63dec6a3a47c73c7ae5359ceaaa0dcee49938372de2b1daeb9f545c1087a275f
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ This gem allows users to access the current weeks Billboard Hot 100.
|
|
|
7
7
|
Add this line to your application's Gemfile:
|
|
8
8
|
|
|
9
9
|
```ruby
|
|
10
|
-
gem '
|
|
10
|
+
gem 'billboard_hot_100_CLI'
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
And then execute:
|
|
@@ -16,7 +16,7 @@ And then execute:
|
|
|
16
16
|
|
|
17
17
|
Or install it yourself as:
|
|
18
18
|
|
|
19
|
-
$ gem install
|
|
19
|
+
$ gem install billboard_hot_100_CLI
|
|
20
20
|
|
|
21
21
|
## Usage
|
|
22
22
|
|
|
Binary file
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
lib = File.expand_path("../lib", __FILE__)
|
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
|
+
require "billboard_hot_100/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |spec|
|
|
6
|
+
spec.name = "billboard_hot_100_CLI"
|
|
7
|
+
spec.version = BillboardHot100::VERSION
|
|
8
|
+
spec.authors = ["Stephen Olson"]
|
|
9
|
+
spec.email = ["stephenolson@gmail.com"]
|
|
10
|
+
|
|
11
|
+
spec.summary = %q{"This gem allows users to access the current weeks Billboard Hot 100."}
|
|
12
|
+
spec.description = %q{Access the current weeks Billboard Hot 100. Select a song to see additional information.}
|
|
13
|
+
spec.homepage = "https://github.com/stephenolson/billboard_hot_100"
|
|
14
|
+
spec.license = "MIT"
|
|
15
|
+
|
|
16
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
17
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
|
18
|
+
# if spec.respond_to?(:metadata)
|
|
19
|
+
# spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
|
|
20
|
+
# else
|
|
21
|
+
# raise "RubyGems 2.0 or newer is required to protect against " \
|
|
22
|
+
# "public gem pushes."
|
|
23
|
+
# end
|
|
24
|
+
|
|
25
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
26
|
+
f.match(%r{^(test|spec|features)/})
|
|
27
|
+
end
|
|
28
|
+
spec.bindir = "exe"
|
|
29
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
30
|
+
spec.require_paths = ["lib"]
|
|
31
|
+
|
|
32
|
+
spec.add_development_dependency "bundler", "~> 1.16"
|
|
33
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
|
34
|
+
spec.add_development_dependency "pry", "~> 0"
|
|
35
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
|
36
|
+
spec.add_development_dependency "nokogiri", "~> 0"
|
|
37
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: billboard_hot_100_CLI
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stephen Olson
|
|
@@ -93,6 +93,8 @@ files:
|
|
|
93
93
|
- Gemfile.lock
|
|
94
94
|
- LICENSE.md
|
|
95
95
|
- README.md
|
|
96
|
+
- billboard_hot_100_CLI-0.1.0.gem
|
|
97
|
+
- billboard_hot_100_CLI.gemspec
|
|
96
98
|
- bin/billboard_hot_100
|
|
97
99
|
- bin/console
|
|
98
100
|
- bin/setup
|