Rakefile in workarea-google_analytics-2.1.6 vs Rakefile in workarea-google_analytics-2.2.0
- old
+ new
@@ -14,15 +14,16 @@
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"'
+ #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 origin HEAD --follow-tags'
+ 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"