class Middleman::CoreExtensions::Data::DataStore

def respond_to?(method, include_private=false)

Needed so that method_missing makes sense
def respond_to?(method, include_private=false)
  super || key?(method)
end