Rakefile in workarea-klarna-1.0.0 vs Rakefile in workarea-klarna-1.1.0.beta1
- old
+ new
@@ -30,18 +30,21 @@
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'workarea/klarna/version'
desc "Release version #{Workarea::Klarna::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 tag -a v#{Workarea::Klarna::VERSION} -m 'Tagging #{Workarea::Klarna::VERSION}'"
system 'git push origin HEAD --follow-tags'
system "gem build workarea-klarna.gemspec"
system "gem push workarea-klarna-#{Workarea::Klarna::VERSION}.gem"
+ system "gem push workarea-klarna-#{Workarea::Klarna::VERSION}.gem --host #{host}"
system "rm workarea-klarna-#{Workarea::Klarna::VERSION}.gem"
end
desc 'Run the JavaScript tests'
ENV['TEASPOON_RAILS_ENV'] = File.expand_path('../test/dummy/config/environment', __FILE__)