nytimesbooks 0.1.1 → 0.1.2
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/lib/nytimesbooks/version.rb +1 -1
- data/nytimesbooks-0.1.1.gem +0 -0
- data/nytimesbooks.gemspec +3 -5
- metadata +5 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fbf50befa8e0ecfd9a32f89bfabdee5bc493c630e15389b3b9a59a837d2a87a3
|
|
4
|
+
data.tar.gz: 4d04db4ceb0415490132da11e2a8fca47829ba20386b8d4fb98cd8741ca4dd3e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0d3b23c965480066004f511231d0c23cde16e2b4f1a19cf044524a2863003e3164de8b1d36f137d8127a906c8d4c4d3f1e14019d12f28a6c740f38f677ce9c08
|
|
7
|
+
data.tar.gz: 98c5adb7b794c7c9fcc5676991d9a5ed5f3ea25c7fd9e057a94e69959efbbbf8492e82104f10391510dcda20f466a10c6fc393854585cad86b3ec4eb76b2197f
|
data/lib/nytimesbooks/version.rb
CHANGED
|
Binary file
|
data/nytimesbooks.gemspec
CHANGED
|
@@ -13,15 +13,13 @@ Gem::Specification.new do |spec|
|
|
|
13
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.}
|
|
14
14
|
spec.homepage = "https://github.com/alexandrafren/nytimesbooks-cli-app"
|
|
15
15
|
|
|
16
|
-
|
|
17
16
|
# Specify which files should be added to the gem when it is released.
|
|
18
17
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
19
|
-
spec.files =
|
|
20
|
-
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
21
|
-
end
|
|
18
|
+
spec.files = `git ls-files`.split($\)
|
|
22
19
|
spec.bindir = "exe"
|
|
23
20
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
24
|
-
spec.require_paths = ["lib"]
|
|
21
|
+
spec.require_paths = ["lib", "lib/nytimesbooks"]
|
|
22
|
+
spec.license = "MIT"
|
|
25
23
|
|
|
26
24
|
spec.add_development_dependency "bundler", "~> 1.16"
|
|
27
25
|
spec.add_development_dependency "rake", "~> 10.0"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- "'Alexandra Fren'"
|
|
@@ -58,14 +58,17 @@ files:
|
|
|
58
58
|
- lib/nytimesbooks/cli.rb
|
|
59
59
|
- lib/nytimesbooks/version.rb
|
|
60
60
|
- nytimesbooks-0.1.0.gem
|
|
61
|
+
- nytimesbooks-0.1.1.gem
|
|
61
62
|
- nytimesbooks.gemspec
|
|
62
63
|
homepage: https://github.com/alexandrafren/nytimesbooks-cli-app
|
|
63
|
-
licenses:
|
|
64
|
+
licenses:
|
|
65
|
+
- MIT
|
|
64
66
|
metadata: {}
|
|
65
67
|
post_install_message:
|
|
66
68
|
rdoc_options: []
|
|
67
69
|
require_paths:
|
|
68
70
|
- lib
|
|
71
|
+
- lib/nytimesbooks
|
|
69
72
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
70
73
|
requirements:
|
|
71
74
|
- - ">="
|