mkv2m4v 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.
data/lib/mkv2m4v/file.rb CHANGED
@@ -72,9 +72,9 @@ module Mkv2m4v
72
72
  def tracks_by_type(type)
73
73
  info_tracks = info.send(type)
74
74
  tracks = info_tracks.count.times.map do |i|
75
- Mkv2m4v.const_get("#{type.capitalize}Track").new(info_tracks[i])
75
+ Mkv2m4v.const_get("#{type.to_s.capitalize}Track").new(info_tracks[i])
76
76
  end
77
- Mkv2m4v.const_get("#{type.capitalize}Ranker").new(tracks, @options)
77
+ Mkv2m4v.const_get("#{type.to_s.capitalize}Ranker").new(tracks, @options)
78
78
  end
79
79
  end
80
80
  end
@@ -1,5 +1,5 @@
1
1
  module Mkv2m4v
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
 
4
4
  VersionDescription = "mkv2m4v #{VERSION} (c) 2012 Ryan McGeary"
5
5
  Description = <<EOS
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: mkv2m4v
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.1
5
+ version: 0.1.2
6
6
  platform: ruby
7
7
  authors:
8
8
  - Ryan McGeary