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 +2 -1
- data/lib/Voyeur/version.rb +1 -1
- data/lib/{Voyeur.rb → voyeur.rb} +1 -1
- data/spec/converters/mp4_spec.rb +0 -7
- data/spec/spec_helper.rb +1 -1
- metadata +4 -4
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
|
|
data/lib/Voyeur/version.rb
CHANGED
data/lib/{Voyeur.rb → voyeur.rb}
RENAMED
data/spec/converters/mp4_spec.rb
CHANGED
@@ -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
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 0.1.
|
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:
|
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
|