class Honk::Task

Public Class Methods

new() click to toggle source
# File lib/honk/tasks.rb, line 7
def initialize
  desc "Honk!"
  task :honk do
    Honk.()
  end

  desc "Throw the rake in the lake"
  task lake: :honk do
  end
end