Sha256: 2037c975184f1750c4907fd4d803a1afd33d4dd187fc05282139956b2b9ce5a2

Contents?: true

Size: 353 Bytes

Versions: 3

Compression:

Stored size: 353 Bytes

Contents

require "bundler/gem_tasks"
require 'rspec/core/rake_task'

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

task :default => :spec

desc "Build Docco Docs"
task :docco do
  `docco lib/**/*.rb`
end

require 'fileutils'
desc "copy the mashed.html to index.html"
task :copy_to_index do
  `cp docs/mashed.html docs/index.html`
end

task :docs => [:docco, :copy_to_index]

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mashed-1.0.2 Rakefile
mashed-1.0.1 Rakefile
mashed-0.9.1 Rakefile