Sha256: 8ee121f255de18f10155cc3f43185dfb9a4dba959b27e339600562e1268cf7e1

Contents?: true

Size: 655 Bytes

Versions: 6

Compression:

Stored size: 655 Bytes

Contents

require "bundler"
Bundler.require :development

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

task :default => :spec

desc "Run all specs"
RSpec::Core::RakeTask.new(:spec) do |task| # {{{
  task.pattern = "spec/**/*_spec.rb"
  task.rspec_opts = "--colour --format=documentation"
end # }}}

desc "Generate YARD Documentation"
YARD::Rake::YardocTask.new do |task| # {{{
  task.options = [
    "-o", File.expand_path("../doc", __FILE__),
    "--readme=README.md",
    "--markup=markdown",
    "--markup-provider=maruku",
    "--no-private",
    "--no-cache",
    "--protected",
    "--title=Her",
  ]
  task.files   = ["lib/**/*.rb"]
end # }}}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
her-0.1.7 Rakefile
her-0.1.6 Rakefile
her-0.1.5 Rakefile
her-0.1.1 Rakefile
her-0.1 Rakefile
her-0.0.1 Rakefile