forked from bakkdoor/rswing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrswing.gemspec
29 lines (29 loc) · 1.27 KB
/
rswing.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
Gem::Specification.new do |s|
s.name = "rswing"
s.summary = "RSwing - Ruby-ish wrapper of Swing GUI-Framework for JRuby"
s.description = %q{RSwing is a wrapper of the Swing GUI-Framework of the Java Platform for JRuby. The goal is to provide a ruby-ish wrapper library to Swing, which makes it feel more like an actual ruby library rather than just a plain interface to the java classes.}
s.version = "0.1.2"
s.date = "2008-10-06"
s.author = "Christopher Bertels"
s.email = "[email protected]"
s.homepage = "http://github.com/bakkdoor/rswing"
s.has_rdoc = true
s.files = [ "README", "LICENSE", "Rakefile",
"lib/rswing.rb",
"lib/rswing/components/button.rb",
"lib/rswing/components/container.rb",
"lib/rswing/components/dialog.rb",
"lib/rswing/components/frame.rb",
"lib/rswing/components/listener.rb",
"lib/rswing/components/options.rb",
"lib/rswing/components/panel.rb",
"lib/rswing/components/text_field.rb",
"lib/rswing/components/events/focus_events.rb",
"lib/rswing/components/events/key_events.rb",
"lib/rswing/components/events/mouse_events.rb"]
s.extra_rdoc_files = ["README"]
s.rdoc_options = ["--main", "README"]
s.requirements << 'none'
s.require_path = 'lib'
puts s.files
end