lustr-jruby 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +4 -0
- data/Manifest.txt +17 -0
- data/README.txt +5 -0
- data/Rakefile +93 -0
- data/lib/lustr-jruby.rb +17 -0
- data/lib/lustr-jruby/_common.rb +48 -0
- data/lib/lustr-jruby/app.rb +51 -0
- data/lib/lustr-jruby/box.rb +37 -0
- data/lib/lustr-jruby/button.rb +33 -0
- data/lib/lustr-jruby/divided_box.rb +41 -0
- data/lib/lustr-jruby/field.rb +36 -0
- data/lib/lustr-jruby/label.rb +32 -0
- data/lib/lustr-jruby/list.rb +31 -0
- data/lib/lustr-jruby/version.rb +24 -0
- data/scripts/txt2html +67 -0
- data/setup.rb +1585 -0
- metadata +69 -0
metadata
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.0
|
3
|
+
specification_version: 1
|
4
|
+
name: lustr-jruby
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.1.0
|
7
|
+
date: 2007-05-24 00:00:00 -04:00
|
8
|
+
summary: Lustr support for JRuby/Swing
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: mmurphy@municorps.org
|
12
|
+
homepage: http://lustr.rubyforge.org
|
13
|
+
rubyforge_project: lustr
|
14
|
+
description: Lustr support for JRuby/Swing
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
29
|
+
authors:
|
30
|
+
- Makr Murphy
|
31
|
+
files:
|
32
|
+
- History.txt
|
33
|
+
- Manifest.txt
|
34
|
+
- README.txt
|
35
|
+
- Rakefile
|
36
|
+
- lib/lustr-jruby.rb
|
37
|
+
- lib/lustr-jruby/version.rb
|
38
|
+
- lib/lustr-jruby/button.rb
|
39
|
+
- lib/lustr-jruby/box.rb
|
40
|
+
- lib/lustr-jruby/app.rb
|
41
|
+
- lib/lustr-jruby/field.rb
|
42
|
+
- lib/lustr-jruby/label.rb
|
43
|
+
- lib/lustr-jruby/list.rb
|
44
|
+
- lib/lustr-jruby/divided_box.rb
|
45
|
+
- lib/lustr-jruby/_common.rb
|
46
|
+
- scripts/txt2html
|
47
|
+
- setup.rb
|
48
|
+
test_files: []
|
49
|
+
|
50
|
+
rdoc_options: []
|
51
|
+
|
52
|
+
extra_rdoc_files: []
|
53
|
+
|
54
|
+
executables: []
|
55
|
+
|
56
|
+
extensions: []
|
57
|
+
|
58
|
+
requirements: []
|
59
|
+
|
60
|
+
dependencies:
|
61
|
+
- !ruby/object:Gem::Dependency
|
62
|
+
name: lustr-core
|
63
|
+
version_requirement:
|
64
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: "0.1"
|
69
|
+
version:
|