class SyntaxTree::CLI::Action

The parent action class for the CLI that implements the basics.

Attributes

options[R]

Public Class Methods

new(options) click to toggle source
# File lib/syntax_tree/cli.rb, line 106
def initialize(options)
  @options = options
end

Public Instance Methods

failure() click to toggle source
# File lib/syntax_tree/cli.rb, line 116
def failure
end
run(item) click to toggle source
# File lib/syntax_tree/cli.rb, line 110
def run(item)
end
success() click to toggle source
# File lib/syntax_tree/cli.rb, line 113
def success
end