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 +4 -4
- data/Gemfile.lock +24 -0
- data/lib/nytimesbooks/version.rb +1 -1
- data/lib/nytimesbooks.rb +3 -3
- data/nytimesbooks.gemspec +7 -5
- metadata +22 -9
- data/nytimesbooks-0.1.0.gem +0 -0
- data/nytimesbooks-0.1.1.gem +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6f63fe507605aac8e417838ab1da1770e35f933e62260fc40f2bb01f8a416788
|
|
4
|
+
data.tar.gz: 803aa992702aca1fe40747559b3b23facadf0635788cff016f98bf5bb36a7717
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
data/lib/nytimesbooks/version.rb
CHANGED
data/lib/nytimesbooks.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
require "open-uri"
|
|
2
2
|
require "nokogiri"
|
|
3
3
|
|
|
4
|
-
require_relative "
|
|
5
|
-
require_relative "
|
|
6
|
-
require_relative "
|
|
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.
|
|
20
|
-
spec.
|
|
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.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- "'Alexandra Fren'"
|
|
8
8
|
autorequire:
|
|
9
|
-
bindir:
|
|
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
|
- - ">="
|
data/nytimesbooks-0.1.0.gem
DELETED
|
Binary file
|
data/nytimesbooks-0.1.1.gem
DELETED
|
Binary file
|