nytimesbooks 0.1.2 → 0.1.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fbf50befa8e0ecfd9a32f89bfabdee5bc493c630e15389b3b9a59a837d2a87a3
4
- data.tar.gz: 4d04db4ceb0415490132da11e2a8fca47829ba20386b8d4fb98cd8741ca4dd3e
3
+ metadata.gz: 6f63fe507605aac8e417838ab1da1770e35f933e62260fc40f2bb01f8a416788
4
+ data.tar.gz: 803aa992702aca1fe40747559b3b23facadf0635788cff016f98bf5bb36a7717
5
5
  SHA512:
6
- metadata.gz: 0d3b23c965480066004f511231d0c23cde16e2b4f1a19cf044524a2863003e3164de8b1d36f137d8127a906c8d4c4d3f1e14019d12f28a6c740f38f677ce9c08
7
- data.tar.gz: 98c5adb7b794c7c9fcc5676991d9a5ed5f3ea25c7fd9e057a94e69959efbbbf8492e82104f10391510dcda20f466a10c6fc393854585cad86b3ec4eb76b2197f
6
+ metadata.gz: 1fddadf12a38ae2f0b84164032de8667559bf0a43e5f0d7d3a32fe4861aeb49cde1637d604e2e1fcd7597595fc6acf3a00d45ad067ae3e4ef99d6c4f82d74b26
7
+ data.tar.gz: 100dc90cbd291a274a64f9736243ae11c5c7ae1c4979bbb3556c42d98c319774c30c3e05fc113e10e5dc493245c5918ca33023c05e3ea988b66b7e20f13a6e06
data/Gemfile.lock ADDED
@@ -0,0 +1,24 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ nytimesbooks (0.1.2)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ mini_portile2 (2.3.0)
10
+ nokogiri (1.8.3)
11
+ mini_portile2 (~> 2.3.0)
12
+ rake (10.4.2)
13
+
14
+ PLATFORMS
15
+ ruby
16
+
17
+ DEPENDENCIES
18
+ bundler (~> 1.16)
19
+ nokogiri
20
+ nytimesbooks!
21
+ rake (~> 10.0)
22
+
23
+ BUNDLED WITH
24
+ 1.16.2
@@ -1,3 +1,3 @@
1
1
  module Nytimesbooks
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
data/lib/nytimesbooks.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  require "open-uri"
2
2
  require "nokogiri"
3
3
 
4
- require_relative "./nytimesbooks/version"
5
- require_relative "./nytimesbooks/cli"
6
- require_relative "./nytimesbooks/books"
4
+ require_relative "nytimesbooks/version"
5
+ require_relative "nytimesbooks/cli"
6
+ require_relative "nytimesbooks/books"
data/nytimesbooks.gemspec CHANGED
@@ -10,17 +10,19 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["'alexandra.fren@gmail.com'"]
11
11
 
12
12
  spec.summary = %q{This gem pulls the bestseller lists from NYT. It has a CLI that allows users to drill down further through each list.}
13
- spec.description = %q{This gem pulls the bestseller lists from NYT. It has a CLI that allows users to drill down further through each list, showing all of the books on each list and allowing users to select a book to see its description.}
13
+ spec.description = %q{This gem pulls the bestseller lists from NYT. It has a CLI that allows users to drill down further through each list, showing all of the books on each list and allowing users to select a book to see its description. The new version fixes the executable.}
14
14
  spec.homepage = "https://github.com/alexandrafren/nytimesbooks-cli-app"
15
15
 
16
+ spec.files = `git ls-files`.split($\)
17
+ spec.executables = ["nytimesbooks"]
18
+
16
19
  # Specify which files should be added to the gem when it is released.
17
20
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
18
21
  spec.files = `git ls-files`.split($\)
19
- spec.bindir = "exe"
20
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
- spec.require_paths = ["lib", "lib/nytimesbooks"]
22
- spec.license = "MIT"
22
+ spec.executables = ["nytimesbooks"]
23
+ spec.require_paths = ["lib"]
23
24
 
24
25
  spec.add_development_dependency "bundler", "~> 1.16"
25
26
  spec.add_development_dependency "rake", "~> 10.0"
27
+ spec.add_development_dependency "nokogiri"
26
28
  end
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nytimesbooks
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
  - "'Alexandra Fren'"
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2018-07-10 00:00:00.000000000 Z
12
12
  dependencies:
@@ -38,17 +38,34 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: nokogiri
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
41
55
  description: This gem pulls the bestseller lists from NYT. It has a CLI that allows
42
56
  users to drill down further through each list, showing all of the books on each
43
- list and allowing users to select a book to see its description.
57
+ list and allowing users to select a book to see its description. The new version
58
+ fixes the executable.
44
59
  email:
45
60
  - "'alexandra.fren@gmail.com'"
46
- executables: []
61
+ executables:
62
+ - nytimesbooks
47
63
  extensions: []
48
64
  extra_rdoc_files: []
49
65
  files:
50
66
  - ".gitignore"
51
67
  - Gemfile
68
+ - Gemfile.lock
52
69
  - Rakefile
53
70
  - bin/console
54
71
  - bin/nytimesbooks
@@ -57,18 +74,14 @@ files:
57
74
  - lib/nytimesbooks/books.rb
58
75
  - lib/nytimesbooks/cli.rb
59
76
  - lib/nytimesbooks/version.rb
60
- - nytimesbooks-0.1.0.gem
61
- - nytimesbooks-0.1.1.gem
62
77
  - nytimesbooks.gemspec
63
78
  homepage: https://github.com/alexandrafren/nytimesbooks-cli-app
64
- licenses:
65
- - MIT
79
+ licenses: []
66
80
  metadata: {}
67
81
  post_install_message:
68
82
  rdoc_options: []
69
83
  require_paths:
70
84
  - lib
71
- - lib/nytimesbooks
72
85
  required_ruby_version: !ruby/object:Gem::Requirement
73
86
  requirements:
74
87
  - - ">="
Binary file
Binary file