Class: Module

Inherits:
Object show all
Defined in:
lib/aws/s3/extensions.rb

Instance Method Summary collapse

Instance Method Details

#const_missing_from_s3_library(sym) ⇒ Object Also known as: const_missing

Transforms MarcelBucket into

class MarcelBucket < AWS::S3::Bucket
  set_current_bucket_to 'marcel'
end


206
207
208
209
210
211
212
213
214
# File 'lib/aws/s3/extensions.rb', line 206

def const_missing_from_s3_library(sym)
  if sym.to_s =~ /^(\w+)(Bucket|S3Object)$/
    const = const_set(sym, Class.new(AWS::S3.const_get($2)))
    const.current_bucket = $1.underscore
    const
  else
    const_missing_not_from_s3_library(sym)
  end
end

#constant(name, value) ⇒ Object



190
191
192
193
194
195
196
197
198
199
# File 'lib/aws/s3/extensions.rb', line 190

def constant(name, value)
  unless const_defined?(name)
    const_set(name, value) 
    module_eval(<<-EVAL, __FILE__, __LINE__)
      def self.#{name.to_s.downcase}
        #{name.to_s}
      end
    EVAL
  end
end

#memoized(method_name) ⇒ Object



178
179
180
181
182
183
184
185
186
187
188
# File 'lib/aws/s3/extensions.rb', line 178

def memoized(method_name)
  original_method = "unmemoized_#{method_name}_#{Time.now.to_i}"
  alias_method original_method, method_name
  module_eval(<<-EVAL, __FILE__, __LINE__)
    def #{method_name}(reload = false, *args, &block)
      expirable_memoize(reload) do
        send(:#{original_method}, *args, &block)
      end
    end
  EVAL
end