Sha256: 9c350284dfc06129568c5ec9489d4aceb7dd958c0c17493298695c349a8b8577

Contents?: true

Size: 661 Bytes

Versions: 7

Compression:

Stored size: 661 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=Teamocil",
  ]
  task.files   = ["lib/**/*.rb"]
end # }}}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
teamocil-0.3.9 Rakefile
teamocil-0.3.8 Rakefile
teamocil-0.3.7 Rakefile
teamocil-0.3.6 Rakefile
teamocil-0.3.5 Rakefile
teamocil-0.3.4 Rakefile
teamocil-0.3.3 Rakefile