public
Description: Ruby interface to the ffmpeg C library
Homepage: http://blog.gwikzone.org/
Clone URL: git://github.com/gwik/ffmpeg-ruby.git
ffmpeg-ruby / ffmpeg-ruby.gemspec
100644 15 lines (14 sloc) 0.53 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Gem::Specification.new do |spec|
  spec.name = 'ffmpeg-ruby'
  spec.version = '0.1.0'
  spec.summary = 'Ruby C bindings to ffmpeg/av library, especially usefull to extract thumbnails'
  spec.author = "Antonin Amand"
  spec.email = 'antonin.amand@gmail.com'
  spec.files = Dir['ext/*.{rb,c,h}']
  spec.homepage = 'http://github.com/gwik/ffmpeg-ruby'
  spec.has_rdoc = false
  spec.extensions << 'ext/extconf.rb'
  spec.require_path = 'ext'
  spec.date = Time.now
  spec.requirements << 'ffmpeg library patched for ffmpeg-ruby'
end