Sha256: 24e7ab8c2295edb00ea9a69bfcc228ea234ef8f168158e7474ee5b498b2f4213

Contents?: true

Size: 439 Bytes

Versions: 6

Compression:

Stored size: 439 Bytes

Contents

# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/switchtower.rake, and they will automatically be available to Rake.

require(File.join(File.dirname(__FILE__), 'config', 'boot'))

require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

desc "Run the unit tests in test/unit"
Rake::TestTask.new(:test) do |t|
  t.libs << "test"
  t.pattern = 'test/unit/**/*_test.rb'
  t.verbose = true
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
shattered-0.3.1 lib/templates/Rakefile
shattered-0.3 lib/templates/Rakefile
shattered-0.3.2 lib/templates/Rakefile
shattered-0.3.3 lib/templates/Rakefile
shattered-0.4 lib/templates/Rakefile
shattered-0.4.0.1 lib/templates/Rakefile