class RubyLeiningen::Commands::Uberjar
Public Instance Methods
configure_command(builder, opts)
click to toggle source
Calls superclass method
RubyLeiningen::Commands::Mixins::Environment#configure_command
# 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