Sha256: 2400b56fc142fa1767775366ea325f695b4eef7371376321e4a158418237e3bb

Contents?: true

Size: 465 Bytes

Versions: 58

Compression:

Stored size: 465 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


task :default => :test

Version data entries

58 entries across 58 versions & 2 rubygems

Version Path
kaui-0.1.9 Rakefile
kaui-0.1.8 Rakefile
kaui-0.1.7 Rakefile
kaui-0.1.6 Rakefile
kaui-0.1.5 Rakefile
kaui-0.1.4 Rakefile
kaui-0.1.3 Rakefile
kaui-0.1.2 Rakefile
kaui-0.1.0 Rakefile
kaui-0.0.9 Rakefile
kaui-0.0.8 Rakefile
kaui-0.0.7 Rakefile
kaui-0.0.6 Rakefile
kaui-0.0.5 Rakefile
kaui-0.0.4 Rakefile
kaui-0.0.3 Rakefile
kaui-0.0.2 Rakefile
kaui-0.0.1 Rakefile