Sha256: eabf95bfe45ec6106b83a64b3f3019cbe82319c3cfaeff10f9dc22b3372e75ff
Contents?: true
Size: 506 Bytes
Versions: 12
Compression:
Stored size: 506 Bytes
Contents
module Lono class Param < Command class_option :verbose, type: :boolean class_option :noop, type: :boolean class_option :mute, type: :boolean desc "generate", "Generate parameter output files to `output/params`." long_desc Lono::Help.text("param/generate") option :stack, desc: "stack name. defaults to blueprint name." def generate(blueprint=nil) Blueprint::Find.one_or_all(blueprint).each do |b| Generator.new(b, options).generate end end end end
Version data entries
12 entries across 12 versions & 1 rubygems