class Github::CoreExt::OrderedHash

def shift

def shift
  key = @order.first
  key ? [key, delete(key)] : super
end