require "yaml"
require_relative "math_helper"

module Helpers
  include MathHelper

  def config_yml
    config_path = File.expand_path("../config.yml", __FILE__)
    @yml ||= YAML.load_file(config_path)
  end
end
