Sha256: 85fa93ea80a00629afe1d89f09f8503f32b441aea3177added906f99b4da9754

Contents?: true

Size: 924 Bytes

Versions: 16

Compression:

Stored size: 924 Bytes

Contents

require 'rubygems'
require './lib/tracksperanto'

begin
  require 'hoe'
  # 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('tracksperanto') do | p |
    p.version = Tracksperanto::VERSION
    p.extra_deps = {"flexmock" => ">=0"}
    p.rubyforge_name = 'guerilla-di'
    p.developer('Julik Tarkhanov', 'me@julik.nl')
    p.extra_rdoc_files = p.extra_rdoc_files.reject{|e| e =~ "samples\/"}
  end
rescue LoadError
  $stderr.puts "Meta-operations on this package require Hoe"
  task :default => [ :test ]
  
  require 'rake/testtask'
  desc "Run all tests (requires BlueCloth, RedCloth and Rails for integration tests)"
  Rake::TestTask.new("test") do |t|
    t.libs << "test"
    t.pattern = 'test/**/test_*.rb'
    t.verbose = true
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
tracksperanto-1.6.6 Rakefile
tracksperanto-1.6.5 Rakefile
tracksperanto-1.6.4 Rakefile
tracksperanto-1.6.3 Rakefile
tracksperanto-1.6.2 Rakefile
tracksperanto-1.6.1 Rakefile
tracksperanto-1.6.0 Rakefile
tracksperanto-1.5.7 Rakefile
tracksperanto-1.5.6 Rakefile
tracksperanto-1.5.5 Rakefile
tracksperanto-1.5.4 Rakefile
tracksperanto-1.5.3 Rakefile
tracksperanto-1.5.2 Rakefile
tracksperanto-1.5.1 Rakefile
tracksperanto-1.5.0 Rakefile
tracksperanto-1.4.0 Rakefile