Sha256: a78b3556982c1abe4b59ee231e4ed26dcaae045c22d030df672493ca60c8a3b4
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
Contents
require 'yard' require 'yard/rake/yardoc_task' require File.expand_path(File.dirname(__FILE__) + '/../lib/cucumber/platform') SITE_DIR = File.expand_path(File.dirname(__FILE__) + '/../../cucumber.github.com') API_DIR = File.join(SITE_DIR, 'api', 'cucumber', 'ruby', 'yardoc') TEMPLATE_DIR = File.expand_path(File.join(File.dirname(__FILE__), 'yard')) YARD::Templates::Engine.register_template_path(TEMPLATE_DIR) namespace :api do task :dir do unless File.directory?(SITE_DIR) raise "You need to git clone git@github.com:cucumber/cucumber.github.com.git #{SITE_DIR}" end Dir.chdir(SITE_DIR) do sh 'git pull -u' mkdir_p API_DIR end end YARD::Rake::YardocTask.new(:yard) do |yard| yard.options = ["--out", API_DIR] end task :yard => :dir task :release do Dir.chdir(SITE_DIR) do sh 'git add .' sh "git commit -m 'Update API docs for Cucumber-Ruby v#{Cucumber::VERSION}'" sh 'git push' end end desc "Generate YARD docs for Cucumber's API" task :doc => [:yard, :release] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cucumber-1.2.5 | gem_tasks/yard.rake |