Sha256: 3cf4c02f0efbf772abf703a1ac612a263abfaaf89b01ef75b1772334bb80f845
Contents?: true
Size: 968 Bytes
Versions: 1
Compression:
Stored size: 968 Bytes
Contents
# Ruby-Processing is for Code Art. # Send suggestions, ideas, and hate-mail to jashkenas [at] gmail.com # Also, send samples and libraries. unless defined? RP5_ROOT $LOAD_PATH << File.expand_path(File.dirname(__FILE__)) RP5_ROOT = File.expand_path(File.dirname(__FILE__) + "/../") end require 'ruby-processing/helpers/string' # The top-level namespace, a home for all Ruby-Processing classes. module Processing VERSION = [1,0,1] # Returns the current version of Ruby-Processing. def self.version VERSION.join('.') end autoload :App, 'ruby-processing/app' autoload :Runner, 'ruby-processing/runner' autoload :Creator, 'ruby-processing/exporters/creator' autoload :BaseExporter, 'ruby-processing/exporters/base_exporter' autoload :AppletExporter, 'ruby-processing/exporters/applet_exporter' autoload :ApplicationExporter, 'ruby-processing/exporters/application_exporter' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-processing-1.0.1 | lib/ruby-processing.rb |