Sha256: 5607541608fcbe12ae1e7c67453260343a620498e9672ca2ae9d0426f91282c3

Contents?: true

Size: 498 Bytes

Versions: 33

Compression:

Stored size: 498 Bytes

Contents

require 'rake'
require 'rubygems/package_task'

spec = eval(File.read('cpee-logging-xes-yaml.gemspec'))
Gem::PackageTask.new(spec) do |pkg|
  pkg.need_zip = true
  pkg.need_tar = true
  FileUtils.mkdir 'pkg' rescue nil
  FileUtils.rm_rf Dir.glob('pkg/*')
  FileUtils.ln_sf "#{pkg.name}.gem", "pkg/#{spec.name}.gem"
end

task :default => [:gem]

task :push => :gem do |r|
  `gem push pkg/cpee-logging-xes-yaml.gem`
end

task :install => :gem do |r|
  `gem install pkg/cpee-logging-xes-yaml.gem`
end

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
cpee-logging-xes-yaml-1.3.14 Rakefile
cpee-logging-xes-yaml-1.3.13 Rakefile
cpee-logging-xes-yaml-1.3.10 Rakefile
cpee-logging-xes-yaml-1.3.9 Rakefile
cpee-logging-xes-yaml-1.3.8 Rakefile
cpee-logging-xes-yaml-1.3.7 Rakefile
cpee-logging-xes-yaml-1.3.6 Rakefile
cpee-logging-xes-yaml-1.3.5 Rakefile
cpee-logging-xes-yaml-1.3.4 Rakefile
cpee-logging-xes-yaml-1.3.3 Rakefile
cpee-logging-xes-yaml-1.3.2 Rakefile
cpee-logging-xes-yaml-1.3.1 Rakefile
cpee-logging-xes-yaml-1.3.0 Rakefile
cpee-logging-xes-yaml-1.2.7 Rakefile
cpee-logging-xes-yaml-1.2.6 Rakefile
cpee-logging-xes-yaml-1.2.5 Rakefile
cpee-logging-xes-yaml-1.2.4 Rakefile
cpee-logging-xes-yaml-1.2.3 Rakefile
cpee-logging-xes-yaml-1.2.2 Rakefile
cpee-logging-xes-yaml-1.2.1 Rakefile