Module: RubyLeiningen::ClassMethods

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

Instance Method Summary collapse

Instance Method Details

#check(opts = {}) ⇒ Object



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

def check(opts = {})
  Commands::Check.new.execute(opts)
end

#clean(opts = {}) ⇒ Object



27
28
29
# File 'lib/ruby_leiningen.rb', line 27

def clean(opts = {})
  Commands::Clean.new.execute(opts)
end

#deps(opts = {}) ⇒ Object



31
32
33
# File 'lib/ruby_leiningen.rb', line 31

def deps(opts = {})
  Commands::Deps.new.execute(opts)
end

#run(opts = {}) ⇒ Object



35
36
37
# File 'lib/ruby_leiningen.rb', line 35

def run(opts = {})
  Commands::Run.new.execute(opts)
end

#uberjar(opts = {}) ⇒ Object



39
40
41
# File 'lib/ruby_leiningen.rb', line 39

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

#versionObject



19
20
21
# File 'lib/ruby_leiningen.rb', line 19

def version
  Commands::Version.new.execute
end