Sha256: bc20e921de55554b8f3539cbd9077bbfd7e9552c666d24c87c72b1e12025349a

Contents?: true

Size: 557 Bytes

Versions: 1

Compression:

Stored size: 557 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.spec('edl') do | p |
  p.version = EDL::VERSION
  p.extra_deps = {"flexmock" => ">=0", "timecode" => ">=0.1.9", "test_spec" => ">=0"}
  p.rubyforge_name = 'guerilla-di'
  p.developer('Julik Tarkhanov', 'me@julik.nl')
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.9 Rakefile