class VFS::Command

The primary Command for VFS.

Public Class Methods

new(argv) click to toggle source
Calls superclass method
# File lib/yaml-vfs/command.rb, line 17
def initialize(argv)
  super
  return if ansi_output?

  Colored2.disable!
  String.send(:define_method, :colorize) { |string, _| string }
end