Sha256: 3c1ffb3b2079e5a290202f4e955f89816ae7aaf7f3173c7917761a995c494262

Contents?: true

Size: 628 Bytes

Versions: 3

Compression:

Stored size: 628 Bytes

Contents

require "bundler/gem_tasks"
require "rake/testtask"
require 'cucumber'
require 'cucumber/rake/task'

if File.exist?(Dir.home + '/.trooconf')
  Cucumber::Rake::Task.new(:cucumber) do |t|
    t.cucumber_opts = "features --format progress"
  end

  Rake::TestTask.new do |t|
    t.libs << 'lib/troo'
    t.test_files = FileList["test/lib/troo/*_test.rb",
                            "test/lib/troo/**/*_test.rb"]
    t.verbose = false
  end

  task :default => :test

  Rake::Task['cucumber'].execute
else
  warn "\nConfiguration cannot be found, please run `troo " \
       "wizard` or `./bin/troo wizard` first.\n"
  exit(1)
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
troo-0.0.15 Rakefile
troo-0.0.14 Rakefile
troo-0.0.13 Rakefile