Sha256: c7144787862826e415dc133d51857f4003e84712e9f5327c31a22ce2aa9cdfa4

Contents?: true

Size: 1.29 KB

Versions: 5

Compression:

Stored size: 1.29 KB

Contents

require 'yard'
require 'yard/rake/yardoc_task'
require File.expand_path(File.dirname(__FILE__) + '/../lib/cucumber/platform')

DOC_DIR      = File.expand_path(File.dirname(__FILE__) + '/../doc')
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
  YARD::Rake::YardocTask.new(:yard) do |yard|
    yard.options = ["--out", DOC_DIR]
  end

  task :sync_with_git 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'
    end
  end

  task :copy_to_website do
    rm_rf API_DIR
    cp_r DOC_DIR, API_DIR
  end

  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, :sync_with_git, :copy_to_website, :release]
  
  desc "Build cucumber gem and doc locally"
  task :build => [:yard, :sync_with_git, :copy_to_website]
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
cucumber-2.0.0.beta.5 gem_tasks/yard.rake
cucumber-2.0.0.beta.4 gem_tasks/yard.rake
cucumber-2.0.0.beta.3 gem_tasks/yard.rake
cucumber-2.0.0.beta.2 gem_tasks/yard.rake
cucumber-2.0.0.beta.1 gem_tasks/yard.rake