module TapDance

Constants

VERSION

Attributes

ui[W]

Public Class Methods

method_missing(method, *args, &block) click to toggle source
# File lib/tap_dance.rb, line 10
def self.method_missing(method, *args, &block)
  TapDance::CLI.new.send(method, *args, &block)
end
respond_to?(method) click to toggle source
# File lib/tap_dance.rb, line 6
def self.respond_to?(method)
  TapDance.instance_methods.include? method
end
ui() click to toggle source
# File lib/tap_dance.rb, line 17
def ui
  @ui ||= UI.new
end