Sha256: 5e12279fd578e059d25b1e001058549998299aee4b1e75cc9cea2ce3f10925fb

Contents?: true

Size: 643 Bytes

Versions: 3

Compression:

Stored size: 643 Bytes

Contents

# encoding: UTF-8
require 'rubygems'
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

Bundler::GemHelper.install_tasks

require 'rake'
require 'rake/rdoctask'

require 'rspec/core'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)

task :default => :spec

Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'motr'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end



desc "Run watchr"
task :watchr do
  `watchr .watchr`
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
motr-0.0.3 Rakefile
motr-0.0.2 Rakefile
motr-0.0.1 Rakefile