Sha256: 040a01f8f6fe76806da7a7d7e7ed51a8f645cb92a19febb46f82f6a782e6b821

Contents?: true

Size: 306 Bytes

Versions: 7

Compression:

Stored size: 306 Bytes

Contents

#!/usr/bin/env rake
require "bundler/gem_tasks"


namespace :test do

  desc "Run integration test for Ubuntu 10.04 LTE"
  task :lucid do
    result = system "cd test/ubuntu-lucid && ./test.sh"
    exit 1 unless result
  end

  task :all => [ :lucid ]

end
task :test => "test:all"

task :default => :test

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
roundsman-sgonyea-0.1.0.4 Rakefile
roundsman-sgonyea-0.1.0.3 Rakefile
roundsman-sgonyea-0.1.0.2 Rakefile
roundsman-0.1.1 Rakefile
roundsman-sgonyea-0.1.0.1 Rakefile
roundsman-0.1.0 Rakefile
roundsman-0.0.1 Rakefile