fxri 0.3.2 → 0.3.3
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/fxri +260 -258
- data/fxri.gemspec +16 -16
- data/fxri.kpf +66 -0
- data/lib/Empty_Text_Field_Handler.rb +57 -57
- data/lib/FoxDisplayer.rb +146 -146
- data/lib/FoxTextFormatter.rb +270 -260
- data/lib/Globals.rb +3 -2
- data/lib/Icon_Loader.rb +30 -30
- data/lib/Packet_Item.rb +167 -167
- data/lib/Packet_List.rb +187 -187
- data/lib/Recursive_Open_Struct.rb +205 -205
- data/lib/RiManager.rb +133 -133
- data/lib/Search_Engine.rb +159 -159
- data/lib/fxirb.rb +321 -332
- metadata +51 -42
metadata
CHANGED
@@ -1,65 +1,74 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.8.
|
2
|
+
rubygems_version: 0.8.11
|
3
3
|
specification_version: 1
|
4
4
|
name: fxri
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.3.
|
7
|
-
date:
|
8
|
-
summary:
|
6
|
+
version: 0.3.3
|
7
|
+
date: 2006-02-02 00:00:00 +01:00
|
8
|
+
summary: Graphical interface to the RI documentation, with search engine.
|
9
9
|
require_paths:
|
10
|
-
|
11
|
-
email:
|
10
|
+
- lib
|
11
|
+
email: markus.prinz@qsig.org
|
12
12
|
homepage: http://fxri.rubyforge.org/
|
13
13
|
rubyforge_project: fxri
|
14
|
-
description:
|
15
|
-
allows for search-on-typing."
|
14
|
+
description: FxRi is an FXRuby interface to the RI documentation, with a search engine that allows for search-on-typing.
|
16
15
|
autorequire:
|
17
16
|
default_executable:
|
18
|
-
bindir:
|
17
|
+
bindir: .
|
19
18
|
has_rdoc: false
|
20
19
|
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
21
20
|
requirements:
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
version: 0.0.0
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
26
24
|
version:
|
27
25
|
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
28
|
authors: []
|
29
|
+
|
29
30
|
files:
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
31
|
+
- lib
|
32
|
+
- fxri
|
33
|
+
- fxri.gemspec
|
34
|
+
- fxri.kpf
|
35
|
+
- lib/FoxDisplayer.rb
|
36
|
+
- lib/icons
|
37
|
+
- lib/Recursive_Open_Struct.rb
|
38
|
+
- lib/RiManager.rb
|
39
|
+
- lib/Globals.rb
|
40
|
+
- lib/fxirb.rb
|
41
|
+
- lib/Packet_Item.rb
|
42
|
+
- lib/Search_Engine.rb
|
43
|
+
- lib/Empty_Text_Field_Handler.rb
|
44
|
+
- lib/FoxTextFormatter.rb
|
45
|
+
- lib/Packet_List.rb
|
46
|
+
- lib/Icon_Loader.rb
|
47
|
+
- lib/icons/module.png
|
48
|
+
- lib/icons/method.png
|
49
|
+
- lib/icons/class.png
|
48
50
|
test_files: []
|
51
|
+
|
49
52
|
rdoc_options: []
|
53
|
+
|
50
54
|
extra_rdoc_files: []
|
55
|
+
|
51
56
|
executables:
|
52
|
-
|
57
|
+
- fxri
|
53
58
|
extensions: []
|
59
|
+
|
54
60
|
requirements: []
|
61
|
+
|
55
62
|
dependencies:
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
63
|
+
- !ruby/object:Gem::Dependency
|
64
|
+
name: fxruby
|
65
|
+
version_requirement:
|
66
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
67
|
+
requirements:
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: 1.2.0
|
71
|
+
- - <
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: "1.3"
|
74
|
+
version:
|