Method: Ufo::CLI::Opts#runtime_options

Defined in:
lib/ufo/cli/opts.rb

#runtime_optionsObject



20
21
22
23
24
25
26
27
28
# File 'lib/ufo/cli/opts.rb', line 20

def runtime_options
  with_cli_scope do
    option :force, :type => :boolean, :aliases => "-f", :group => :runtime,
                         :desc => "Overwrite files that already exist"

    option :skip, :type => :boolean, :aliases => "-s", :group => :runtime,
                        :desc => "Skip files that already exist"
  end
end