class RubyZen
Public Class Methods
langs()
click to toggle source
# File lib/ruby-zen.rb, line 12 def self.langs langs = Params::LANGS puts "Available langs: #{langs.join(', ')}" end
show(options)
click to toggle source
# File lib/ruby-zen.rb, line 17 def self.show(options) app = Application.new Rules.new(app).show(options) end
version()
click to toggle source
# File lib/ruby-zen.rb, line 8 def self.version puts "#{Params::NAME} (version #{Params::VERSION})" end