Method: Steep::CLI#process_paths

Defined in:
lib/steep/cli.rb

#process_pathsObject



257
258
259
260
261
262
263
264
265
266
267
268
269
# File 'lib/steep/cli.rb', line 257

def process_paths
  with_signature_options do |signature_options|
    OptionParser.new do |opts|
      handle_dir_options opts, signature_options
    end.parse!(argv)

    signature_options.paths.each do |path|
      stdout.puts path
    end

    0
  end
end