Sha256: d9bfdc49dc4305d8b276d3bda0b3ef5878e95c5ed0cf258b920f33261162a1bb

Contents?: true

Size: 525 Bytes

Versions: 1

Compression:

Stored size: 525 Bytes

Contents

require 'rubygems'
require 'hoe'
require './lib/edl.rb'

# Disable spurious warnings when running tests, ActiveMagic cannot stand -w
Hoe::RUBY_FLAGS.replace ENV['RUBY_FLAGS'] || "-I#{%w(lib test).join(File::PATH_SEPARATOR)}" + 
  (Hoe::RUBY_DEBUG ? " #{RUBY_DEBUG}" : '')

Hoe.new('edl', EDL::VERSION) do |p|
  p.rubyforge_name = 'wiretap'
  p.developer('Julik', 'me@julik.nl')
  p.extra_deps << "flexmock" << "timecode" << "test-spec"
  p.remote_rdoc_dir = 'edl'
end

task "specs" do
  `specrb test/* --rdox > SPECS.txt`
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
edl-0.0.7 Rakefile