Sha256: d7cd6eb8195dc953579847339dc2e36932f115a059967b0a6b951ca7c9e20a89

Contents?: true

Size: 895 Bytes

Versions: 1

Compression:

Stored size: 895 Bytes

Contents

require 'rake'
require 'echoe'

task :default => :gendoc

task :gendoc do
  `rm -rf doc`
  `yardoc -e lib/city.rb -p lib/templates 'example/**/*' --debug`
end

Echoe.new('cucumber-in-the-yard', '1.5.2') do |g|
  g.author = "Franklin Webber"
  g.email = "franklin.webber@gmail.com"
  g.url = "http://github.com/burtlo/Cucumber-In-The-Yard"
  g.description = %{ 
    Cucumber-In-The-Yard is a YARD extension that processes Cucumber Features, Scenarios, Steps,
    Step Definitions, Transforms, and Tags and provides a documentation interface that allows you
    easily view and investigate the test suite.  This tools hopes to bridge the gap of being able
    to provide your feature descriptions to your Product Owners and Stakeholders.  }
  g.ignore_pattern = FileList["{doc,pkg,spec,features,nbproject,autotest}/**/*"].to_a
  g.runtime_dependencies = [ "cucumber >=0.7.5", "yard >=0.6.1" ]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cucumber-in-the-yard-1.5.2 Rakefile