Module: Cfer::Core::Functions::Fn
- Extended by:
- Cfer::Core::Functions
- Defined in:
- lib/cfer/core/functions.rb
Class Method Summary collapse
Methods included from Cfer::Core::Functions
and, equals, find_in_map, get_att, get_azs, if, join, not, notification_arns, or, ref, select, sub
Class Method Details
.method_missing(sym, *args) ⇒ Object
69 70 71 72 73 |
# File 'lib/cfer/core/functions.rb', line 69 def self.method_missing(sym, *args) method = sym.to_s.camelize raise "Fn::#{method} requires one argument" unless args.size == 1 { "Fn::#{method}" => args.first } end |