Sha256: 759d1df7a45c722db7ba0fd08b707a87b57e25134fe571cdb8b36b02a10f649e
Contents?: true
Size: 413 Bytes
Versions: 232
Compression:
Stored size: 413 Bytes
Contents
class Jets::Stack class Output module Dsl extend ActiveSupport::Concern def outputs Output.definitions(self.class) end class_methods do def output(*definition) # self is subclass is the stack that inherits from Jets::Stack # IE: ExampleStack < Jets::Stack Output.new(self, *definition).register end end end end end
Version data entries
232 entries across 232 versions & 4 rubygems