class Strapper::Recipe

Public Class Methods

new(*args) click to toggle source
# File lib/strapper/recipe.rb, line 8
def initialize(*args)
  @args = args
end
register_keyword(keyword) click to toggle source
# File lib/strapper/recipe.rb, line 4
def self.register_keyword(keyword)
  Strapper::Registry.add({ keyword => self })
end

Public Instance Methods

installed?() click to toggle source
# File lib/strapper/recipe.rb, line 12
def installed?
  false
end