class Fudge::Parser

Handles parsing of fudge file and building the necessary description

Public Instance Methods

parse(file) click to toggle source

Parse a FudgeFile at a given location

# File lib/fudge/parser.rb, line 6
def parse(file)
  File.open(file) do |f|
    Description.new(f)
  end
end