Sha256: 425f4b31862524b32e0142a36def62617d278b3e35b52346c80ed138b4943275
Contents?: true
Size: 658 Bytes
Versions: 8
Compression:
Stored size: 658 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=redcarpet", "--no-private", "--no-cache", "--protected", "--title=Her", ] task.files = ["lib/**/*.rb"] end # }}}
Version data entries
8 entries across 8 versions & 1 rubygems
Version | Path |
---|---|
her-0.2.5 | Rakefile |
her-0.2.4 | Rakefile |
her-0.2.3 | Rakefile |
her-0.2.2 | Rakefile |
her-0.2.1 | Rakefile |
her-0.2 | Rakefile |
her-0.1.8.1 | Rakefile |
her-0.1.8 | Rakefile |