Module: RubyLeiningen::ClassMethods

Included in:
RubyLeiningen
Defined in:
lib/ruby_leiningen.rb

Instance Method Summary collapse

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

#uberjar(opts = {}) ⇒ Object



44
45
46
# File 'lib/ruby_leiningen.rb', line 44

def uberjar(opts = {})
  Commands::Uberjar.new.execute(opts)
end

#versionObject



24
25
26
# File 'lib/ruby_leiningen.rb', line 24

def version
  Commands::Version.new.execute
end