class JRubyComplete

Public Class Methods

complete() click to toggle source
# File lib/jruby_art/jruby_complete.rb, line 4
def self.complete
  rcomplete = File.join(K9_ROOT, 'lib/ruby/jruby-complete.jar')
  return [rcomplete] if FileTest.exist?(rcomplete)

  warn "#{rcomplete} does not exist\nTry running `k9 --install`"
  exit
end