Sha256: 87e201656476562c5021bd2963a82b5d22efc7361041aeffe2f3ebe76655767b

Contents?: true

Size: 396 Bytes

Versions: 3

Compression:

Stored size: 396 Bytes

Contents

require 'rspec/core/rake_task'
gem 'rdoc' # we need the installed RDoc gem, not the system one
require 'rdoc/task'

include Rake::DSL

Bundler::GemHelper.install_tasks

RSpec::Core::RakeTask.new do |t|
  # Put spec opts in a file named .rspec in root
end

Rake::RDocTask.new do |rd|
  
  rd.main = "README.rdoc"
  
  rd.rdoc_files.include("README.rdoc","lib/*.rb")
end

task :default => [:spec]

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
RunIt-1.0.1 Rakefile
RunIt-1.0.0 Rakefile
RunIt-0.1.0 Rakefile