Sha256: c99b47817b0a4b1074cdaa703ec518df9aafcd55e55b7b2323a98cd3b1bc671b
Contents?: true
Size: 637 Bytes
Versions: 6
Compression:
Stored size: 637 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
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
teamocil-0.4.5 | Rakefile |
teamocil-0.4.4 | Rakefile |
teamocil-0.4.3 | Rakefile |
teamocil-0.4.2 | Rakefile |
teamocil-0.4.1 | Rakefile |
teamocil-0.4 | Rakefile |