Sha256: 1396753dc7304ad4db0911afc7b060b141a48431c3bf7344c76fa5444c2ab36e

Contents?: true

Size: 471 Bytes

Versions: 27

Compression:

Stored size: 471 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("../sandbox/Rakefile", __FILE__)
#load 'rails/tasks/engine.rake'
#


Bundler::GemHelper.install_tasks

require "rake/testtask"

# desc "Testing"
#
# task :test do
#   1
# end

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

task :default => :test

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
arcabouco-0.2.16 Rakefile
arcabouco-0.2.15 Rakefile
arcabouco-0.2.14 Rakefile
arcabouco-0.2.13 Rakefile
arcabouco-0.2.12 Rakefile
arcabouco-0.2.11 Rakefile
arcabouco-0.2.10 Rakefile
arcabouco-0.2.9 Rakefile
arcabouco-0.2.8 Rakefile
arcabouco-0.2.7 Rakefile
arcabouco-0.2.6 Rakefile
arcabouco-0.2.5 Rakefile
arcabouco-0.2.4 Rakefile
arcabouco-0.2.3 Rakefile
arcabouco-0.2.2 Rakefile
arcabouco-0.2.1 Rakefile
arcabouco-0.2.0 Rakefile
arcabouco-0.1.9 Rakefile
arcabouco-0.1.8 Rakefile
arcabouco-0.1.7 Rakefile