# # Copyright © 2013 # Nathan Currier # # Use, modification, and distribution are all subject to the # Boost Software License, Version 1.0. (See the accompanying # file LICENSE.md or at rideliner.tk/LICENSE.html). # # <description> #

module Bakery

module Ingredient
  class Marker
    def initialize *args, &block
      @wd = Dir.pwd

      Bakery::Log.debug "set #{self.class}: #{@wd}"

      Bakery.markers << self
    end

    def getPath
      @wd
    end
  end
end

end