module S3Search

Constants

VERSION

Public Class Methods

client() click to toggle source
# File lib/s3search.rb, line 6
def client
  @client ||= S3Search::Client.new
end
respond_to_missing?(method_name, include_private=false) click to toggle source
# File lib/s3search.rb, line 10
def respond_to_missing? method_name, include_private=false
  client.respond_to?(method_name, include_private)
end

Private Class Methods

method_missing(method_name, *args, &block) click to toggle source
Calls superclass method
# File lib/s3search.rb, line 16
def method_missing method_name, *args, &block
  return super unless client.respond_to?(method_name)
  client.send(method_name, *args, &block)
end