Method: Cfer::Core::Functions::AWS.method_missing

Defined in:
lib/cfer/core/functions.rb

.method_missing(sym, *args) ⇒ Object



59
60
61
62
63
# File 'lib/cfer/core/functions.rb', line 59

def self.method_missing(sym, *args)
  method = sym.to_s.camelize
  raise "AWS::#{method} does not accept arguments" unless args.empty?
  ref "AWS::#{method}"
end