Sha256: cf9578033375a9167f3a72710a8ac70d47bb3e35f5164ee133e4bd1c560e17db

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.1') 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.1 Rakefile