Module: RubyLeiningen::ClassMethods
- Included in:
- RubyLeiningen
- Defined in:
- lib/ruby_leiningen.rb
Instance Method Summary collapse
- #check(opts = {}) ⇒ Object
- #clean(opts = {}) ⇒ Object
- #deps(opts = {}) ⇒ Object
- #release(opts = {}) ⇒ Object
- #run(opts = {}) ⇒ Object
- #uberjar(opts = {}) ⇒ Object
- #version ⇒ Object
Instance Method Details
#check(opts = {}) ⇒ Object
28 29 30 |
# File 'lib/ruby_leiningen.rb', line 28 def check(opts = {}) Commands::Check.new.execute(opts) end |
#clean(opts = {}) ⇒ Object
32 33 34 |
# File 'lib/ruby_leiningen.rb', line 32 def clean(opts = {}) Commands::Clean.new.execute(opts) end |
#deps(opts = {}) ⇒ Object
36 37 38 |
# File 'lib/ruby_leiningen.rb', line 36 def deps(opts = {}) Commands::Deps.new.execute(opts) end |
#release(opts = {}) ⇒ Object
48 49 50 |
# File 'lib/ruby_leiningen.rb', line 48 def release(opts = {}) Commands::Release.new.execute(opts) end |
#run(opts = {}) ⇒ Object
40 41 42 |
# File 'lib/ruby_leiningen.rb', line 40 def run(opts = {}) Commands::Run.new.execute(opts) end |