npr_best_books 0.1.0 → 0.1.1

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: bb8bcf1372616deddb59c823d1e441abfe1e6675
4
- data.tar.gz: 128ef1feb7fa2e1e9e543fa8d2dd22571c44b4ec
3
+ metadata.gz: 156ad48e51e6bd6ac7288c77cc98d286e70db7b3
4
+ data.tar.gz: 63aa4d0f410ec8f78f9b41b76ee2ccbcd3d52514
5
5
  SHA512:
6
- metadata.gz: b8129dc8c0782dc74619aaecc7e26d4b6999d6617cf1ff3e66acd31f5a830c282a481840cd8f8bc4a0ed3bfa720fcc721c1eceaac85ae91b995ed3f15e34eaf2
7
- data.tar.gz: 1817aa5a7d90f32e68975a6316de5354a258e3449361ec6f0bf2f47bae0a40002416ef2c9b8cd1d2ac0a768626448195a343b3dd526e94f60474d63d2e4f3553
6
+ metadata.gz: c250f0432316ffde96562d668596b08c1578192088fdd374a8a09f39de4e53566481bf1fd4b9412e74bd0d3d7e4d5e0bf3b8b6f1e883d78aaf69345d9312d83a
7
+ data.tar.gz: 2082241d8d5ece5e60b04e0f1f6de0f1fa3c26fe13c09f66f2bb66a72a9c2431f32a5498d7079ed4ef57881b30b901ce04353b031b1f2708d34068a0a8aa09cc
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require_relative './lib/npr_best_books'
4
+
5
+ NPRBestBooks::CLI.new.call
@@ -1,3 +1,3 @@
1
1
  module NPRBestBooks
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
Binary file
@@ -9,14 +9,14 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["beingy"]
10
10
  spec.email = ["beingy@gmail.com"]
11
11
 
12
- spec.summary = "CLI Gem to retrieve book recomendations from NPR's Book Concierge website."
13
- spec.description = "Welcome to my NPR Book Concierge CLI Gem. Current version will check [NPR's Book Concierge website](http://apps.npr.org/best-books-2015) and retrieve 2015's book recommendations in the Science Fiction and Fantasy genre."
12
+ spec.summary = "CLI Gem to list book recomendations from NPR's Book Concierge website."
13
+ spec.description = "A Simple CLI Gem to list NPR Book Concierge website's 2015 book recommendations in the Science Fiction and Fantasy genre."
14
14
  spec.homepage = "https://github.com/beingy/npr-best-books-cli-gem"
15
15
  spec.license = "MIT"
16
16
 
17
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
- spec.bindir = "exe"
19
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
18
+ spec.bindir = "bin"
19
+ spec.executables = ["npr_best_books"]
20
20
  spec.require_paths = ["lib"]
21
21
 
22
22
  spec.add_development_dependency "bundler", "~> 1.12"
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: npr_best_books
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - beingy
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2016-07-02 00:00:00.000000000 Z
12
12
  dependencies:
@@ -80,12 +80,12 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '1.8'
83
- description: Welcome to my NPR Book Concierge CLI Gem. Current version will check
84
- [NPR's Book Concierge website](http://apps.npr.org/best-books-2015) and retrieve
85
- 2015's book recommendations in the Science Fiction and Fantasy genre.
83
+ description: A Simple CLI Gem to list NPR Book Concierge website's 2015 book recommendations
84
+ in the Science Fiction and Fantasy genre.
86
85
  email:
87
86
  - beingy@gmail.com
88
- executables: []
87
+ executables:
88
+ - npr_best_books
89
89
  extensions: []
90
90
  extra_rdoc_files: []
91
91
  files:
@@ -99,7 +99,7 @@ files:
99
99
  - README.md
100
100
  - Rakefile
101
101
  - bin/console
102
- - bin/npr-best-books
102
+ - bin/npr_best_books
103
103
  - bin/setup
104
104
  - lib/npr_best_books.rb
105
105
  - lib/npr_best_books/book.rb
@@ -107,6 +107,7 @@ files:
107
107
  - lib/npr_best_books/list.rb
108
108
  - lib/npr_best_books/scraper.rb
109
109
  - lib/npr_best_books/version.rb
110
+ - npr_best_books-0.1.0.gem
110
111
  - npr_best_books.gemspec
111
112
  homepage: https://github.com/beingy/npr-best-books-cli-gem
112
113
  licenses:
@@ -131,5 +132,5 @@ rubyforge_project:
131
132
  rubygems_version: 2.4.5.1
132
133
  signing_key:
133
134
  specification_version: 4
134
- summary: CLI Gem to retrieve book recomendations from NPR's Book Concierge website.
135
+ summary: CLI Gem to list book recomendations from NPR's Book Concierge website.
135
136
  test_files: []
data/bin/npr-best-books DELETED
@@ -1,5 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require './lib/npr_best_books'
4
-
5
- NPRBestBooks::CLI.new.call