module Atheneum

Constants

StrategyUndefined
VERSION

Public Class Methods

method_missing(strategy, *attributes, &block) click to toggle source
# File lib/atheneum.rb, line 7
def self.method_missing(strategy, *attributes, &block)
  options = attributes.pop if attributes.last.class == Hash
  options ||= {}
  Storage.generate strategy, attributes, options
end