apple-tv-converter 0.6.0 → 0.6.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.
data/CHANGELOG CHANGED
@@ -1,3 +1,12 @@
1
+ v0.6.2
2
+ ------
3
+ * Added the missing VERSION file
4
+
5
+ v0.6.1 (yanked)
6
+ ------
7
+ * Fixed the display of the AKA names for movies
8
+ * Updated some gem dependencies
9
+
1
10
  v0.6.0
2
11
  ------
3
12
  * Added command line option to allow resizing the converted video
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- apple-tv-converter (0.5.9)
4
+ apple-tv-converter (0.6.0)
5
5
  httparty (~> 0)
6
6
  imdb (~> 0.6, >= 0.6.8)
7
7
  language_list (~> 0.0, >= 0.0.3)
@@ -21,10 +21,10 @@ GEM
21
21
  json (1.8.1)
22
22
  language_list (0.1.0)
23
23
  libxml-ruby (2.7.0)
24
- mini_portile (0.5.3)
24
+ mini_portile (0.6.0)
25
25
  multi_xml (0.5.5)
26
- nokogiri (1.6.1)
27
- mini_portile (~> 0.5.0)
26
+ nokogiri (1.6.2.1)
27
+ mini_portile (= 0.6.0)
28
28
  rake (0.9.6)
29
29
  rspec (2.14.1)
30
30
  rspec-core (~> 2.14.0)
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.6.2
@@ -247,7 +247,11 @@ module AppleTvConverter
247
247
 
248
248
  search.movies[0...20].each_with_index do |item, index|
249
249
  puts " | #{(index + 1).to_s.rjust(search.movies.length.to_s.length)} - #{item.title.strip} (id: #{item.id})"
250
- puts " | #{' '.rjust(search.movies.length.to_s.length)} AKA: #{item.also_known_as.join(', ').strip}" if item.also_known_as.any?
250
+ if item.also_known_as.any?
251
+ akas = item.also_known_as[0...5].each do |aka|
252
+ puts " | #{' '.rjust(search.movies.length.to_s.length)} AKA: #{(aka.is_a?(Hash) ? aka[:title] : aka).strip}"
253
+ end
254
+ end
251
255
  end
252
256
 
253
257
  printf " |\n *- What's your choice (1..#{[search.movies.length, 20].min})? "
@@ -1,3 +1,3 @@
1
1
  module AppleTvConverter
2
- VERSION = "0.6.0"
2
+ VERSION = File.read(File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'VERSION')))
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: apple-tv-converter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-06-22 00:00:00.000000000 Z
12
+ date: 2014-07-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec
@@ -238,6 +238,7 @@ files:
238
238
  - CHANGELOG
239
239
  - Gemfile
240
240
  - Gemfile.lock
241
+ - VERSION
241
242
  homepage: http://github.com/gokuu/apple-tv-converter
242
243
  licenses:
243
244
  - MIT
@@ -259,7 +260,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
259
260
  version: '0'
260
261
  requirements: []
261
262
  rubyforge_project:
262
- rubygems_version: 1.8.24
263
+ rubygems_version: 1.8.23
263
264
  signing_key:
264
265
  specification_version: 3
265
266
  summary: Converts movies to a format playable on Apple TV.