podcast-book-club 1.0.2 → 1.0.3

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
  SHA256:
3
- metadata.gz: 7cd880410f24a83c490284a946f7f8e1ef7fb9f7bc48962b41fecfe0561c3a7f
4
- data.tar.gz: 47d9f4fd6aef4c2b0a9d6426c81cc42724518ea702d2f2284c6b53e85f253f54
3
+ metadata.gz: 94574eb4f6dd2b366e83824b8cff8716e3a7745085762058dbcc6fc02706a8de
4
+ data.tar.gz: e9fc53da7992cd0418952302b546cd364ec9a069c2f3f73cee25fbb6ddf3f688
5
5
  SHA512:
6
- metadata.gz: c76a17d8f75cca411508f83205a86a46d5b59c24615acab7d542fe5df5114ea3639a4bd7be009d5c9378a626e28a61f47d4f3b1498341e8ec841fe2340cbd503
7
- data.tar.gz: a0fa7d5f5ea3071be1620cd56ce30a19b0e036db2b08f264a707dc19e73ef5018b21bff581a83086b11fe1898b3344c5f3bd9a2d27a3bf15c42eaca16376e8e4
6
+ metadata.gz: e2b93b25a4362a7d65e39b7303c74e769e453ae3b2e50ba1c0decffda606ffcff80ef13211df9f4cdb77025489a2a053043cc690dd0478fd486e67e34be1eace
7
+ data.tar.gz: 10e01f3e1c8482df6b45abdd837f0d23c49b7cd6392978dc60841050cf86700ae73008d015df1a0a6e30b10ead8acb72f324e2546563b9c7607265a961e0a337
Binary file
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- podcast-book-club (1.0.2)
4
+ podcast-book-club (1.0.3)
5
5
  googlebooks (~> 0.0.9)
6
6
  nokogiri (~> 1.6, >= 1.6.8)
7
7
  rainbow (~> 3.0)
@@ -217,10 +217,9 @@ class PodcastBookClub::CLI
217
217
 
218
218
  authors = book.author.map {|a| a.name} unless book.author == [] || book.author == nil
219
219
  genres = book.genre.map {|g| g.name} unless book.genre == [] || book.genre == nil
220
-
221
220
  puts Rainbow("#{number} - #{book.title}").bg(:black).yellow.bright
222
- puts Rainbow("Author(s): ").bg(:black).yellow.bright + authors.join(", ") unless authors == []
223
- puts Rainbow("Genre: ").bg(:black).yellow.bright + genres.join(", ") unless genres == []
221
+ puts Rainbow("Author(s): ").bg(:black).yellow.bright + authors.join(", ") unless authors == [] || authors == nil
222
+ puts Rainbow("Genre: ").bg(:black).yellow.bright + genres.join(", ") unless genres == [] || genres == nil
224
223
  puts Rainbow("Synopsis: ").bg(:black).yellow.bright + "#{book.synopsis}" unless book.synopsis == ""
225
224
  puts Rainbow("URL: ").bg(:black).yellow.bright + "#{book.url}\n\n"
226
225
 
@@ -1,3 +1,3 @@
1
1
  module PodcastBookClub
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: podcast-book-club
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - jessrezac
@@ -136,6 +136,7 @@ executables:
136
136
  extensions: []
137
137
  extra_rdoc_files: []
138
138
  files:
139
+ - ".DS_Store"
139
140
  - ".gitignore"
140
141
  - ".rspec"
141
142
  - ".travis.yml"