Class: KMDB::S3Bucket

Inherits:
Object
  • Object
show all
Includes:
Singleton
Defined in:
lib/kmdb/s3_bucket.rb

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method, *args, &block) ⇒ Object



9
10
11
# File 'lib/kmdb/s3_bucket.rb', line 9

def method_missing(method, *args, &block)
  _directory.send(method, *args, &block)
end

Instance Method Details

#respond_to?(method, all = false) ⇒ Boolean

Returns:

  • (Boolean)


13
14
15
# File 'lib/kmdb/s3_bucket.rb', line 13

def respond_to?(method, all = false)
  _directory.respond_to(method, all)
end