Top Level Namespace

Defined Under Namespace

Modules: Processing, RubyProcessing Classes: CamelString, Numeric, PryException, Range, StringExtra

Constant Summary collapse

RP5_ROOT =
File.expand_path(File.dirname(__FILE__) + '/../')
MESSAGE =
"You need to 'jruby -S gem install pry' for 'live' mode"
BASIC =
<<-CODE
def setup
  size %s, %s
end

def draw

end
CODE
BASIC_MODE =
<<-CODE
def setup
  size %s, %s, %s
end

def draw

end
CODE
CLASS_BASIC =
<<-CODE
class %s < Processing::App
  def setup
    size %s, %s
  end

  def draw

  end
end
CODE
CLASS_MODE =
<<-CODE
class %s < Processing::App
  def setup
    size %s, %s, %s
  end

  def draw

  end
end
CODE
INNER =
<<-CODE
class %s
  include Processing::Proxy

end
CODE