Sha256: a34ea02b47f37f64f82307b752d49c54b355989042591997ff46ccb58968054b

Contents?: true

Size: 566 Bytes

Versions: 32

Compression:

Stored size: 566 Bytes

Contents

require "rake/clean"
require 'bundler/gem_tasks'

namespace :test do
  desc "Test MiniPortile by running unit tests"
  task :unit do
    sh "ruby -w -W2 -I. -Ilib -e \"#{Dir["test/test_*.rb"].map{|f| "require '#{f}';"}.join}\" -- -v"
  end

  desc "Test MiniPortile by compiling examples"
  task :examples do
    Dir.chdir("examples") do
      sh "rake ports:all"
    end
  end
end

task :clean do
  FileUtils.rm_rf ["examples/ports", "examples/tmp"], :verbose => true
end

desc "Run all tests"
task :test => ["test:unit", "test:examples"]

task :default => [:test]

Version data entries

32 entries across 28 versions & 8 rubygems

Version Path
vagrant-unbundled-1.8.5.1 vendor/bundle/ruby/2.3.0/gems/mini_portile2-2.1.0/Rakefile
vagrant-unbundled-1.8.5.1 vendor/bundle/ruby/2.3.0/gems/mini_portile2-2.0.0/Rakefile
vagrant-unbundled-1.8.4.2 vendor/bundle/ruby/2.3.0/gems/mini_portile2-2.0.0/Rakefile
vagrant-unbundled-1.8.4.2 vendor/bundle/ruby/2.3.0/gems/mini_portile2-2.1.0/Rakefile
vagrant-unbundled-1.8.4.1 vendor/bundle/ruby/2.3.0/gems/mini_portile2-2.0.0/Rakefile
tdiary-5.0.1 vendor/bundle/gems/mini_portile2-2.1.0/Rakefile
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/mini_portile2-2.0.0/Rakefile
mini_portile2-2.2.0.rc1 Rakefile
vagrant-unbundled-1.8.1.1 vendor/bundle/ruby/2.3.0/gems/mini_portile2-2.0.0/Rakefile
mini_portile2-2.1.0 Rakefile
mini_portile2-2.0.0 Rakefile
mini_portile2-2.0.0.rc2 Rakefile