rff 0.2.1 → 0.2.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/ext/rff/Makefile +8 -0
  3. data/ext/rff/extconf.rb +20 -0
  4. metadata +7 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d7f531623ad10e04e6d56a0239288a07c29496a0
4
- data.tar.gz: d1ac919f17abb2c66c8852f3f6ab633112ed08b0
3
+ metadata.gz: fb457c6f053f0e540b537f18bdbad4d5f60bab59
4
+ data.tar.gz: a8f3dafb9749a3ba2900d0f1edf4420773b69d0a
5
5
  SHA512:
6
- metadata.gz: 99470bb909ffbd3c8a6bb458bf04dc1d8af395e6824ff59bd54010b10d80bef347fdf63d42afffd028d842ef63761a71c16265579b969a898d536048cde21f52
7
- data.tar.gz: 1966c047232f8f3940aba4a3533ebfaeb2fc9279d610eebceba3ffa6eb31827b7db7763c257fbdcb4a1a77a64d487e181dbd2e22c27e15ca17be721f208f31a7
6
+ metadata.gz: 86cdd8e8b29ee0de8e7291aee518a7a5236e37da3a7a4b6474bdcbc7a4b3f07e631b71b6cb1142e54abee2ab64f99b48dadf7c882b1cbe7d0b3d40f33009792b
7
+ data.tar.gz: 45622a31a7ab93cbb9223b9feb76b4a40775755072789f1d84ab13d6d8e1550acef9e29bd6f3b6590d9307076235d74972d1c71a5099d1290d8f7dc36daabe26
data/ext/rff/Makefile ADDED
@@ -0,0 +1,8 @@
1
+ all:
2
+ true
3
+
4
+ install:
5
+ true
6
+
7
+ clean:
8
+ true
@@ -0,0 +1,20 @@
1
+ require 'mkmf'
2
+
3
+ fffound = find_executable('ffmpeg')
4
+ makefound = find_executable('make')
5
+
6
+ if !fffound
7
+ puts "FFmpeg was not found on your system, installation will be aborted. Please install FFmpeg and try again."
8
+ return false
9
+ end
10
+
11
+ if !makefound
12
+ puts "Make was not found on your system, installation will be aborted. Please install Make and try again."
13
+ return false
14
+ end
15
+
16
+ puts "Dependencies OK, proceeding with the installation..."
17
+
18
+ File.new(Dir.pwd + '/rff.' + RbConfig::CONFIG['DLEXT'], "w+")
19
+
20
+ $makefile_created = true
metadata CHANGED
@@ -1,23 +1,26 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rff
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Phitherek_
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-04-04 00:00:00.000000000 Z
11
+ date: 2014-04-25 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: This gem provides a simple Ruby interface to FFmpeg enabling users to
14
14
  convert audio and video to HTML5 supported formats and monitor the process as it
15
15
  goes.
16
16
  email: phitherek@gmail.com
17
17
  executables: []
18
- extensions: []
18
+ extensions:
19
+ - ext/rff/extconf.rb
19
20
  extra_rdoc_files: []
20
21
  files:
22
+ - ext/rff/Makefile
23
+ - ext/rff/extconf.rb
21
24
  - lib/audio_handler.rb
22
25
  - lib/exceptions.rb
23
26
  - lib/output_reader.rb
@@ -44,6 +47,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
44
47
  version: '0'
45
48
  requirements:
46
49
  - ffmpeg
50
+ - make
47
51
  rubyforge_project:
48
52
  rubygems_version: 2.2.2
49
53
  signing_key: