Sha256: b277cb9ed3c5f2d8d4a9d60acf0987866975531da9a65d466f1ef16ceadfa2b6

Contents?: true

Size: 355 Bytes

Versions: 1

Compression:

Stored size: 355 Bytes

Contents

require 'rubygems/package_task'

task_path = File.expand_path('../lib/zen/task', __FILE__)
tasks     = ['build', 'proto', 'test', 'spelling']
GEMSPEC   = Gem::Specification.load('zen.gemspec')

tasks.each do |task|
  import File.join(task_path, "#{task}.rake")
end

Gem::PackageTask.new(GEMSPEC) do |pkg|
  pkg.need_tar = false
  pkg.need_zip = false
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
zen-0.4.3 Rakefile