require 'rubygems' require 'rake' require 'rake/clean' require 'rake/testtask' require 'rake/packagetask' require 'rake/gempackagetask' require 'rake/rdoctask' require 'rake/contrib/rubyforgepublisher' require 'fileutils' require 'hoe' include FileUtils require File.join(File.dirname(__FILE__), 'lib', 'rdfa', 'version') AUTHOR = 'Cédric Mesnage' # can also be an array of Authors EMAIL = "cedric.mesnage@gmail.com" DESCRIPTION = "description of gem" GEM_NAME = 'rdfa' # what ppl will type to install your gem RUBYFORGE_PROJECT = 'rdfa' # The unix name for your project HOMEPATH = "http://#{RUBYFORGE_PROJECT}.rubyforge.org" DOWNLOAD_PATH = "http://rubyforge.org/projects/#{RUBYFORGE_PROJECT}" NAME = "rdfa" REV = nil # UNCOMMENT IF REQUIRED: File.read(".svn/entries")[/committed-rev="(d+)"/, 1] rescue nil VERS = Rdfa::VERSION::STRING + (REV ? ".#{REV}" : "") CLEAN.include ['**/.*.sw?', '*.gem', '.config', '**/.DS_Store'] #RDOC_OPTS = ['--quiet', '--title', 'RDFa On Rails documentation', # "--opname", "index.html", "--all", # "--line-numbers", # "--main", "lib/rdfa.rb", # "--inline-source"] class Hoe def extra_deps @extra_deps.reject { |x| Array(x).first == 'hoe' } end end # Generate all the Rake tasks # Run 'rake -T' to see list of generated tasks (from gem root directory) hoe = Hoe.new(GEM_NAME, VERS) do |p| p.author = AUTHOR p.description = DESCRIPTION p.email = EMAIL p.summary = DESCRIPTION p.url = HOMEPATH p.rubyforge_name = RUBYFORGE_PROJECT if RUBYFORGE_PROJECT p.test_globs = ["test/**/test_*.rb"] p.clean_globs = CLEAN #An array of file patterns to delete on clean. # == Optional p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n") #p.extra_deps = [] # An array of rubygem dependencies [name, version], e.g. [ ['active_support', '>= 1.3.1'] ] p.spec_extras = { :rdoc_options => ['--main', 'Rdfa'], :extra_rdoc_files => [], :require_paths =>['lib/rdfa.rb'] } # A hash of extra values to set in the gemspec. end #Rake.application.instance_variable_get(:@tasks).delete :docs #Rake.application.instance_variable_get(:@tasks).delete "doc/index.html" desc "Generate RDoc documentation" Rake::RDocTask.new(:rdoc) do |rdoc| rdoc.main = "Rdfa" rdoc.template = 'html' rdoc.options << '--line-numbers' << '--inline-source' rdoc.options << '--title' << 'RDFa On Rails documentation' rdoc.rdoc_dir = 'doc' rdoc.rdoc_files =['lib/rdfa.rb'] end desc 'Generate website files' task :website_generate do Dir['website/**/*.txt'].each do |txt| sh %{ ruby scripts/txt2html #{txt} > #{txt.gsub(/txt$/,'html')} } end end desc 'Upload website files to rubyforge' task :website_upload do config = YAML.load(File.read(File.expand_path("~/.rubyforge/user-config.yml"))) host = "#{config["username"]}@rubyforge.org" remote_dir = "/var/www/gforge-projects/#{RUBYFORGE_PROJECT}/" # remote_dir = "/var/www/gforge-projects/#{RUBYFORGE_PROJECT}/#{GEM_NAME}" local_dir = 'website' sh %{rsync -av #{local_dir}/ #{host}:#{remote_dir}} end desc 'Generate and upload website files' task :website => [:website_generate, :website_upload] desc 'Release the website and new gem version' task :deploy => [:check_version, :website, :release] desc 'Runs tasks website_generate and install_gem as a local deployment of the gem' task :local_deploy => [:website_generate, :install_gem] task :check_version do unless ENV['VERSION'] puts 'Must pass a VERSION=x.y.z release version' exit end unless ENV['VERSION'] == VERS puts "Please update your version.rb to match the release version, currently #{VERS}" exit end end