Sha256: 35db2da390fe15ca015fb7edbad48665f51c50966bdac55362e30860d3ef8f5c

Contents?: true

Size: 1.84 KB

Versions: 4

Compression:

Stored size: 1.84 KB

Contents

##
# Website plugin for hoe.
#
# === Tasks Provided:
#
# website::           Generate and upload website to remote server via rsync
# website_generate::  Generate website files
# website_upload::    Upload website files via rsync

module Hoe::Website
  
  def website_config
    unless @website_config
      require 'yaml'
      begin
        @website_config = YAML.load(File.read("config/website.yml"))
      rescue
        puts <<-EOS.gsub(/^        /, '')
        To upload your website to a host, you need to configure
        config/website.yml. See config/website.yml.sample for 
        an example.
        EOS
        exit
      end
    end
    @website_config
  end
  
  def initialize_website
    require File.dirname(__FILE__) + '/../newgem/tasks'
  end

  def define_website_tasks
    desc 'Generate website files'
    task :website_generate => :ruby_env do
      (Dir['website/**/*.txt'] - Dir['website/version*.txt']).each do |txt|
        sh %{ #{$ruby_app || 'ruby'} script/txt2html #{txt} > #{txt.gsub(/txt$/,'html')} }
      end
    end

    desc 'Upload website files via rsync'
    task :website_upload do
      local_dir  = 'website'
      host       = website_config["host"]
      host       = host ? "#{host}:" : ""
      remote_dir = website_config["remote_dir"]
      sh %{rsync -aCv #{local_dir}/ #{host}#{remote_dir}}
    end

    remove_task :publish_docs # recreate hoe's rubyforge specific version

    desc 'Publish RDoc to RubyForge.'
    task :publish_docs => [:clean, :docs] do
      local_dir  = 'doc'
      host       = website_config["host"]
      host       = host ? "#{host}:" : ""
      remote_dir = File.join(website_config["remote_dir"], "rdoc")
      sh %{rsync -aCv #{local_dir}/ #{host}#{remote_dir}}
    end

    desc 'Generate and upload website files'
    task :website => [:website_generate, :website_upload, :publish_docs]
    
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
newgem-1.5.3 lib/hoe/website.rb
newgem-1.5.0 lib/hoe/website.rb
newgem-1.5.1 lib/hoe/website.rb
newgem-1.5.2 lib/hoe/website.rb