Sha256: 2eb79553780ccf3dfcec34af9b1edef6ba6cfc2de6dd37462f1027c4a975a4ab

Contents?: true

Size: 381 Bytes

Versions: 1

Compression:

Stored size: 381 Bytes

Contents

namespace :release do
  desc 'Push all gems to rubygems.org'
  # git tag and push tag
  # branch into stable vx.x branch
  # change version in version.rb
  # update changelog
  # run rake test

  task :gem do
    puts "Did you git tag and git push the tag for this release yet?"
    #sh("rm *.gem")
    sh("gem build redcloth.gemspec")
    sh("gem push RedCloth-*.gem")
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
RedCloth-4.3.1 tasks/release.rake