module Capybara::RSpecMatcherProxies

def all(*args, &block)

def all(*args, &block)
  if defined?(::RSpec::Matchers::BuiltIn::All) && args.first.respond_to?(:matches?)
    ::RSpec::Matchers::BuiltIn::All.new(*args)
  else
    find_all(*args, &block)
  end
end

def within(*args)

def within(*args)
  if block_given?
    within_element(*args, &Proc.new)
  else
    be_within(*args)
  end
end