ryanb / rmov

Ruby wrapper for the QuickTime C API.

This URL has Read+Write access

rmov / Rakefile
100644 17 lines (14 sloc) 0.598 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'rubygems'
require 'rake'
require 'echoe'
 
Echoe.new('rmov', '0.1.6') do |p|
  p.summary = "Ruby wrapper for the QuickTime C API."
  p.description = "Ruby wrapper for the QuickTime C API."
  p.url = "http://github.com/ryanb/rmov"
  p.author = 'Ryan Bates'
  p.email = "ryan (at) railscasts (dot) com"
  p.ignore_pattern = ["script/*", "tmp/*", "spec/output/*", "**/*.o", "**/*.bundle", "**/*.mov"]
  p.extensions = ["ext/extconf.rb"]
  p.development_dependencies = []
end
 
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }