Sha256: ea93b3fb35b82aab4900468953c20cbdac8be54dba589b53828dac64464765b3
Contents?: true
Size: 396 Bytes
Versions: 23
Compression:
Stored size: 396 Bytes
Contents
# frozen_string_literal: false # A pry shell for live coding. # Will start with your sketch. require_relative 'base' Processing.load_and_run_sketch class PryException < StandardError end MESSAGE = "You need to 'jruby -S gem install pry' for 'live' mode".freeze if Gem::Specification.find_all_by_name('pry').any? require 'pry' Processing.app.pry else raise(PryException.new, MESSAGE) end
Version data entries
23 entries across 23 versions & 1 rubygems