Sha256: 0d6cac4a9f6bc74f35dcc2184b905e013c9fc0661ab79448df815fc16800316c

Contents?: true

Size: 618 Bytes

Versions: 8

Compression:

Stored size: 618 Bytes

Contents

# encoding: UTF-8

require 'rubygems'
require 'bundler/setup'
require 'bundler/gem_tasks'
require 'rake'
require 'rdoc/task'
require 'rubygems/package_task'
require 'rspec/core/rake_task'
require 'appraisal'

desc "Default: run the specs"
task :default => [:all]

desc 'Test the plugin under all supported Rails versions.'
task :all => ["appraisal:install"] do |t|
  exec('rake appraisal spec')
end

RSpec::Core::RakeTask.new do |t|
  t.pattern = 'spec/**/*_spec.rb'
end

RDoc::Task.new do |rdoc|
  rdoc.main = "README.rdoc"
  rdoc.rdoc_files.include("README.rdoc", "lib/**/*.rb")
  rdoc.options << '-f' << 'horo'
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
watchmaker-0.2.2 Rakefile
materializer-0.0.1 Rakefile
watchmaker-0.2.1 Rakefile
watchmaker-0.2.0 Rakefile
watchmaker-0.1.2 Rakefile
watchmaker-0.1.1 Rakefile
watchmaker-0.1.0 Rakefile
watchmaker-0.0.1 Rakefile