Class: RubyLeiningen::Commands::Uberjar
- Includes:
- Mixins::Environment, Mixins::Profile
- Defined in:
- lib/ruby_leiningen/commands/uberjar.rb
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods included from Mixins::Environment
Methods included from Mixins::Profile
Methods inherited from Base
#do_after, #do_before, #execute, #initialize, #instantiate_builder, #stderr, #stdin, #stdout
Instance Method Details
#configure_command(builder, opts) ⇒ Object
13 14 15 16 17 18 19 20 21 |
# 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 |