Sha256: 289d32ead2fb2ee2c1bec6f08a2b9b055ea814fe2baef9367556902fab0fc824

Contents?: true

Size: 282 Bytes

Versions: 12

Compression:

Stored size: 282 Bytes

Contents

#!/usr/bin/env rake
require "bundler/gem_tasks"
require "rake/testtask"

desc "Default: run unit tests."
task :default => :test

desc "Test the acts_as_archival plugin."
Rake::TestTask.new(:test) do |t|
  t.libs    << "test"
  t.pattern = "test/**/*_test.rb"
  t.verbose = true
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
acts_as_archival-1.1.1 Rakefile
acts_as_archival-1.1.0 Rakefile
acts_as_archival-1.0.0 Rakefile
acts_as_archival-0.6.1 Rakefile
acts_as_archival-0.6.0 Rakefile
acts_as_archival-0.5.3 Rakefile
acts_as_archival-0.5.2 Rakefile
acts_as_archival-0.5.1 Rakefile
acts_as_archival-0.5.0 Rakefile
acts_as_archival-0.4.2 Rakefile
acts_as_archival-0.4.1 Rakefile
acts_as_archival-0.4.0 Rakefile