Method: CloudFormer::HasPropertiesAndAttributes::ClassMethods#aws_properties
- Defined in:
- lib/cloud_former/has_properties_and_attributes.rb
#aws_properties ⇒ Object
134 135 136 137 138 139 140 141 142 143 |
# File 'lib/cloud_former/has_properties_and_attributes.rb', line 134 def aws_properties answer = [] if defined?(@aws_properties) answer = @aws_properties end if superclass && superclass.respond_to?(:aws_properties) answer += superclass.aws_properties end answer end |