Sha256: d4bf8be345db536efe386812f5de042a17958fff1cd61f05bedf7329d1f8dcd8

Contents?: true

Size: 1.16 KB

Versions: 2

Compression:

Stored size: 1.16 KB

Contents

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/google_analytics/version'

desc "Release version #{Workarea::GoogleAnalytics::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::GoogleAnalytics::VERSION} -m 'Tagging #{Workarea::GoogleAnalytics::VERSION}'"
  system 'git push --tags'

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
workarea-google_analytics-2.2.0 Rakefile
workarea-google_analytics-2.1.5 Rakefile