Sha256: 3af51e86c53d434548d871fbeea489c37a687ae16136e3e44834ee6c99471b43
Contents?: true
Size: 385 Bytes
Versions: 20
Compression:
Stored size: 385 Bytes
Contents
module Lono::AppFile class Registry cattr_reader :items @@items = [] class << self def register(name, blueprint, options={}) @@items << Item.new(name, blueprint, options) unless @@items.detect { |i| i.name == name && i.type == options[:type] } end def layers @@items.select { |i| i.type == "lambda_layer" } end end end end
Version data entries
20 entries across 20 versions & 1 rubygems