Sha256: 4b837c8f0f24f7c47f419207fd7731825da9d235d50c1ae19aa09cfa7115bec7

Contents?: true

Size: 667 Bytes

Versions: 33

Compression:

Stored size: 667 Bytes

Contents

#!/usr/bin/env rake
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

APP_RAKEFILE = File.expand_path('../test/dummy/Rakefile', __FILE__)
load 'rails/tasks/engine.rake'

Bundler::GemHelper.install_tasks

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end

namespace :test do
  desc 'Runs all the unit tests'
  Rake::TestTask.new(:units) do |t|
    t.libs << 'lib'
    t.libs << 'test'
    t.pattern = 'test/unit/**/*_test.rb'
    t.verbose = false
  end
end

task :default => :test

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
kaui-2.1.0 Rakefile
kaui-2.0.4 Rakefile
kaui-2.0.3 Rakefile
kaui-2.0.2 Rakefile
kaui-2.0.1 Rakefile
kaui-2.0.0 Rakefile
kaui-1.4.1 Rakefile
kaui-1.4.0 Rakefile
kaui-1.3.0 Rakefile
kaui-1.2.0 Rakefile
kaui-1.1.0 Rakefile
kaui-1.0.0 Rakefile
kaui-0.16.2 Rakefile
kaui-0.16.1 Rakefile
kaui-0.16.0 Rakefile
kaui-0.15.5 Rakefile
kaui-0.15.4 Rakefile
kaui-0.15.3 Rakefile
kaui-0.15.2 Rakefile
kaui-0.15.1 Rakefile