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
26 27 28 |
# File 'lib/ruby_leiningen.rb', line 26 def check(opts = {}) Commands::Check.new.execute(opts) end |
#clean(opts = {}) ⇒ Object
30 31 32 |
# File 'lib/ruby_leiningen.rb', line 30 def clean(opts = {}) Commands::Clean.new.execute(opts) end |
#deps(opts = {}) ⇒ Object
34 35 36 |
# File 'lib/ruby_leiningen.rb', line 34 def deps(opts = {}) Commands::Deps.new.execute(opts) end |
#release(opts = {}) ⇒ Object
46 47 48 |
# File 'lib/ruby_leiningen.rb', line 46 def release(opts = {}) Commands::Release.new.execute(opts) end |
#run(opts = {}) ⇒ Object
38 39 40 |
# File 'lib/ruby_leiningen.rb', line 38 def run(opts = {}) Commands::Run.new.execute(opts) end |