module RubyLeiningen::ClassMethods

Public Instance Methods

check(opts = {}) click to toggle source
# File lib/ruby_leiningen.rb, line 26
def check(opts = {})
  Commands::Check.new.execute(opts)
end
clean(opts = {}) click to toggle source
# File lib/ruby_leiningen.rb, line 30
def clean(opts = {})
  Commands::Clean.new.execute(opts)
end
deps(opts = {}) click to toggle source
# File lib/ruby_leiningen.rb, line 34
def deps(opts = {})
  Commands::Deps.new.execute(opts)
end
release(opts = {}) click to toggle source
# File lib/ruby_leiningen.rb, line 46
def release(opts = {})
  Commands::Release.new.execute(opts)
end
run(opts = {}) click to toggle source
# File lib/ruby_leiningen.rb, line 38
def run(opts = {})
  Commands::Run.new.execute(opts)
end
uberjar(opts = {}) click to toggle source
# File lib/ruby_leiningen.rb, line 42
def uberjar(opts = {})
  Commands::Uberjar.new.execute(opts)
end
version() click to toggle source
# File lib/ruby_leiningen.rb, line 22
def version
  Commands::Version.new.execute
end