sapling/lib/sapling/middleware.rb
2017-10-28 22:08:16 -04:00

14 lines
227 B
Ruby

require_relative './gardner'
class Middle
attr_reader :tree
def initialize(app)
@app = app
@tree = Gardner::Plot.new(YAML.load_file('lib/sapling/example.yaml'))
end
def call(env)
@app.call(env)
end
end