Sha256: 29efc0fa95a50a66763a11fce9fe70ae06ee0fdb70ac59193b25e6c0324716d5
Contents?: true
Size: 382 Bytes
Versions: 1
Compression:
Stored size: 382 Bytes
Contents
require 'rake' module Furoshiki class RakeTask def initialize opts={} yield self if block_given? desc "Builds the package for distribution" task "build" do puts "You're going to build something!" end desc "Builds an installer" task "install" do puts "You're going to install something!" end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
furoshiki-0.0.2 | lib/furoshiki/rake_task.rb |