class Automux::Core::Recipe

Attributes

name[R]
path[R]

Public Class Methods

new(path) click to toggle source
# File lib/automux/core/recipe.rb, line 6
def initialize(path)
  @name = File.basename(path, '.sh.erb')
  @path = path
end