Sha256: c27bc0857360d229e7d6ca784b26012de004de0b4e70f37fbc44fdbdb05c9c64

Contents?: true

Size: 1.41 KB

Versions: 2

Compression:

Stored size: 1.41 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'

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end

task default: :test

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

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

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
workarea-inventory_notifications-2.1.5 Rakefile
workarea-inventory_notifications-2.1.4 Rakefile