Method: Steep::CLI#handle_dir_options

Defined in:
lib/steep/cli.rb

#handle_dir_options(opts, options) ⇒ Object



167
168
169
170
171
172
# File 'lib/steep/cli.rb', line 167

def handle_dir_options(opts, options)
  opts.on("-I [PATH]") {|path| options << Pathname(path) }
  opts.on("-G [GEM]") {|gem| options << gem }
  opts.on("--no-builtin") { options.no_builtin! }
  opts.on("--no-bundler") { options.no_bundler! }
end