Module: RubyLeiningen::ClassMethods

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

Instance Method Summary collapse

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

#uberjar(opts = {}) ⇒ Object



42
43
44
# File 'lib/ruby_leiningen.rb', line 42

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

#versionObject



22
23
24
# File 'lib/ruby_leiningen.rb', line 22

def version
  Commands::Version.new.execute
end