forked from jashkenas/ruby-processing
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ruby-processing.gemspec
45 lines (37 loc) · 1.84 KB
/
ruby-processing.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
require 'rake'
Gem::Specification.new do |s|
s.name = "ruby-processing"
s.version = "1.0.8"
s.authors = ["Jeremy Ashkenas", "Peter Gassner", "Martin Stannard", "Andrew Nanton",
"Marc Chung", "Peter Krenn", "Florian Jenett", "Andreas Haller",
"Juris Galang"]
s.date = "2009-4-29"
s.default_executable = "rp5"
s.email = "[email protected]"
s.executables = ["rp5"]
s.extra_rdoc_files = ["README", "CHANGELOG", "LICENSE"]
s.files = FileList['bin/**/*', 'lib/**/*', 'library/**/*', 'samples/**/*'].to_a
s.has_rdoc = true
s.homepage = "http://wiki.github.com/jashkenas/ruby-processing"
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Ruby-Processing", "--main", "README"]
s.require_paths = ["lib"]
s.rubyforge_project = "ruby-processing"
s.summary = "Code as Art, Art as Code. Processing and Ruby are meant for each other."
s.description = <<-EOS
Ruby-Processing is a Ruby wrapper for the Processing code art framework. It's
this thin little shim that squeezes between Processing and JRuby, passing
along some neat goodies like:
* Applet and Application exporting of your sketches. Hand them out to
your party guests, ready-to-run.
* Live Coding via JRuby's IRB. Loads in your sketch so you can futz with
variables and remake methods on the fly.
* Bare sketches. Write your Ruby-Processing sketches without having to define
a class. Without defining methods, even.
* A "Control Panel" library, so that you can easily create sliders, buttons,
checkboxes and drop-down menus, and hook them into your sketch's instance
variables.
* "Watch" mode, where Ruby-Processing keeps an eye on your sketch and reloads
it from scratch every time you make a change. A pretty nice REPL-ish way
to work on your Processing sketches.
EOS
end