Sha256: 0d2eab98059c41d4d90928b136b8466f83eeb67e67b936ad96627a3365d95d57

Contents?: true

Size: 1.12 KB

Versions: 1338

Compression:

Stored size: 1.12 KB

Contents

desc 'Release the website and new gem version'
task :deploy => [:check_version, :website, :release] do
  puts "Remember to create SVN tag:"
  puts "svn copy svn+ssh://#{rubyforge_username}@rubyforge.org/var/svn/#{PATH}/trunk " +
    "svn+ssh://#{rubyforge_username}@rubyforge.org/var/svn/#{PATH}/tags/REL-#{VERS} "
  puts "Suggested comment:"
  puts "Tagging release #{CHANGES}"
end

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

desc 'Install the package as a gem, without generating documentation(ri/rdoc)'
task :install_gem_no_doc => [:clean, :package] do
  sh "#{'sudo ' unless Hoe::WINDOZE }gem install pkg/*.gem --no-rdoc --no-ri"
end

namespace :manifest do
  desc 'Recreate Manifest.txt to include ALL files'
  task :refresh do
    `rake check_manifest | patch -p0 > Manifest.txt`
  end
end

Version data entries

1,338 entries across 1,338 versions & 371 rubygems

Version Path
watcher-1.1.0 tasks/deployment.rake
weatherhacks-0.1.0 tasks/deployment.rake
weatherhacks-0.1.1 tasks/deployment.rake
whitepages-0.0.1 tasks/deployment.rake
whisper-0.0.1 tasks/deployment.rake
win32-captureie-0.1.0 tasks/deployment.rake
wsse-0.0.1 tasks/deployment.rake
xiaonei-0.0.2 tasks/deployment.rake
xiaonei-0.0.3 tasks/deployment.rake
xiaonei-0.0.4 tasks/deployment.rake
xrefresh-server-0.1.0 tasks/deployment.rake
yahoo-geoplanet-0.1.0 tasks/deployment.rake
yahoo-music-0.1.0 tasks/deployment.rake
yapra-0.1.0 tasks/deployment.rake
yapra-0.1.1 tasks/deployment.rake
yapra-0.1.2 tasks/deployment.rake
ycn-0.0.1 tasks/deployment.rake
ycn-0.2.1 tasks/deployment.rake