Sha256: 2ecfb4f3816799e0573baa0776c4d80ea31666d142698f42e0162dc9e018593d
Contents?: true
Size: 1.19 KB
Versions: 5
Compression:
Stored size: 1.19 KB
Contents
ProjectName = 'happymapper' WebsitePath = "jnunemaker@rubyforge.org:/var/www/gforge-projects/#{ProjectName}" require 'rubygems' require 'rake' require 'echoe' require 'spec/rake/spectask' require "lib/#{ProjectName}/version" Echoe.new(ProjectName, HappyMapper::Version) do |p| p.description = "object to xml mapping library" p.install_message = "May you have many happy mappings!" p.url = "http://#{ProjectName}.rubyforge.org" p.author = "John Nunemaker" p.email = "nunemaker@gmail.com" p.extra_deps = [['libxml-ruby', '>= 0.9.7']] p.need_tar_gz = false p.docs_host = WebsitePath end desc 'Upload website files to rubyforge' task :website do sh %{rsync -av website/ #{WebsitePath}} Rake::Task['website_docs'].invoke end task :website_docs do Rake::Task['redocs'].invoke sh %{rsync -av doc/ #{WebsitePath}/docs} end desc 'Preps the gem for a new release' task :prepare do %w[manifest build_gemspec].each do |task| Rake::Task[task].invoke end end Rake::Task[:default].prerequisites.clear task :default => :spec Spec::Rake::SpecTask.new do |t| t.spec_files = FileList["spec/**/*_spec.rb"] end
Version data entries
5 entries across 5 versions & 2 rubygems
Version | Path |
---|---|
jnunemaker-happymapper-0.1.7 | Rakefile |
jnunemaker-happymapper-0.2.0 | Rakefile |
happymapper-0.1.7 | Rakefile |
happymapper-0.2.0 | Rakefile |
happymapper-0.1.6 | Rakefile |