class RubyLeiningen::Commands::Uberjar

Public Instance Methods

configure_command(builder, opts) click to toggle source
# File lib/ruby_leiningen/commands/uberjar.rb, line 13
def configure_command(builder, opts)
  builder = super(builder, opts)

  main_namespace = opts[:main_namespace]

  builder = builder.with_subcommand('uberjar')
  builder = builder.with_argument(main_namespace) if main_namespace
  builder
end