fluke/devops-client/lib/devops-client/options/bootstrap_templates_options.rb
GGA Software Services LLC 02bf8b1bba initial commit
2014-05-08 17:06:06 +04:00

14 lines
272 B
Ruby

require "devops-client/options/common_options"
class BootstrapTemplatesOptions < CommonOptions
commands :list
def initialize args, def_options
super(args, def_options)
self.header = I18n.t("headers.template")
self.banner_header = "templates"
end
end