Sha256: 0fb0f9be6b353635c699f77835e4152fe00af1a3c3b1bda40f538406d72e8e5e

Contents?: true

Size: 1.1 KB

Versions: 2

Compression:

Stored size: 1.1 KB

Contents

#!/usr/bin/env rake
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

APP_RAKEFILE = File.expand_path('../test/dummy/Rakefile', __FILE__)
load 'rails/tasks/engine.rake'
load 'rails/tasks/statistics.rake'
load 'workarea/changelog.rake'

$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'workarea/sitemaps/version'

desc "Release version #{Workarea::Sitemaps::VERSION} of the gem"
task :release do
  host = "https://#{ENV['BUNDLE_GEMS__WEBLINC__COM']}@gems.weblinc.com"

  #Rake::Task['workarea:changelog'].execute
  #system 'git add CHANGELOG.md'
  #system 'git commit -m "Update CHANGELOG"'
  #system 'git push origin HEAD'

  system "git tag -a v#{Workarea::Sitemaps::VERSION} -m 'Tagging #{Workarea::Sitemaps::VERSION}'"
  system 'git push --tags'

  system 'gem build workarea-sitemaps.gemspec'
  system "gem push workarea-sitemaps-#{Workarea::Sitemaps::VERSION}.gem"
  system "gem push workarea-sitemaps-#{Workarea::Sitemaps::VERSION}.gem --host #{host}"
  system "rm workarea-sitemaps-#{Workarea::Sitemaps::VERSION}.gem"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
workarea-sitemaps-2.1.7 Rakefile
workarea-sitemaps-2.1.6 Rakefile