Sha256: 7f7199a56d1466e36c6c608b1666270f57d60b03851704b2828e825ad78b14dd
Contents?: true
Size: 512 Bytes
Versions: 3
Compression:
Stored size: 512 Bytes
Contents
require 'rake' task :default => :gendoc desc "Clean out any existing documentation" task :clean do `rm -rf doc` `rm -rf .yardoc` end desc "Generate documentation from the example data" task :gendoc => :clean do puts `yardoc -e ./lib/yard-gherkin-turnip.rb 'example/**/*' --debug` end desc "Run the YARD Server" task :server => :gendoc do puts `yard server -e ./lib/yard-gherkin-turnip.rb` end desc "Create the yard-gherkin-turnip gem" task :gem do puts `gem build yard-gherkin-turnip.gemspec` end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
yard-gherkin-turnip-1.0.2 | Rakefile |
yard-gherkin-turnip-1.0.1 | Rakefile |
yard-gherkin-turnip-1.0.0 | Rakefile |