voyeur 0.1.0 → 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/README.md CHANGED
@@ -5,7 +5,8 @@ it's like falling out of a tree then climbing back.
5
5
 
6
6
  ## Installation
7
7
  The gem is easily installed by including the following line in your
8
- Gemfile (if you role that way)
8
+ Gemfile (if you role that way). This version is compatible with
9
+ ruby-1.9.x only, however there is a branch for ruby-1.8.7
9
10
 
10
11
  gem 'voyeur'
11
12
 
@@ -1,3 +1,3 @@
1
1
  module Voyeur
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.2"
3
3
  end
@@ -5,4 +5,4 @@ require "Voyeur/converter"
5
5
  require "Voyeur/video_converters/ogv"
6
6
  require "Voyeur/video_converters/mp4"
7
7
  require "Voyeur/video_converters/webm"
8
- require 'open4'
8
+ require 'open4'
@@ -43,13 +43,6 @@ describe Voyeur::Mp4 do
43
43
  result[:status].should == 0
44
44
  result[:video].should == @converter.output_video
45
45
  end
46
-
47
- it "should return stdout" do
48
- pending "why do we want this? this is returning ffmpeg version stuff"
49
- result = @converter.convert(video: @video)
50
- result[:stderr].should == ""
51
- result[:stdout].should == ""
52
- end
53
46
  end
54
47
  end
55
48
  end
data/spec/spec_helper.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require 'rspec'
2
- require 'Voyeur'
2
+ require 'voyeur'
3
3
  require 'spec_helpers/video_file_spec_helper'
4
4
 
5
5
  RSpec.configure do |config|
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 0
9
- version: 0.1.0
8
+ - 2
9
+ version: 0.1.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Peter Garbers
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-11-27 00:00:00 +02:00
18
+ date: 2012-01-31 00:00:00 +02:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -58,7 +58,6 @@ files:
58
58
  - README.md
59
59
  - Rakefile
60
60
  - Voyeur.gemspec
61
- - lib/Voyeur.rb
62
61
  - lib/Voyeur/converter.rb
63
62
  - lib/Voyeur/exceptions.rb
64
63
  - lib/Voyeur/version.rb
@@ -66,6 +65,7 @@ files:
66
65
  - lib/Voyeur/video_converters/mp4.rb
67
66
  - lib/Voyeur/video_converters/ogv.rb
68
67
  - lib/Voyeur/video_converters/webm.rb
68
+ - lib/voyeur.rb
69
69
  - spec/converter_spec.rb
70
70
  - spec/converters/mp4_spec.rb
71
71
  - spec/converters/ogv_spec.rb