fxri 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/fxri +292 -0
- data/fxri.gemspec +24 -0
- data/lib/Empty_Text_Field_Handler.rb +63 -0
- data/lib/FoxDisplayer.rb +148 -0
- data/lib/FoxTextFormatter.rb +265 -0
- data/lib/Globals.rb +42 -0
- data/lib/Icon_Loader.rb +35 -0
- data/lib/Packet_Item.rb +179 -0
- data/lib/Packet_List.rb +192 -0
- data/lib/Recursive_Open_Struct.rb +233 -0
- data/lib/RiManager.rb +155 -0
- data/lib/Search_Engine.rb +165 -0
- data/lib/fxirb.rb +339 -0
- data/lib/icons/class.png +0 -0
- data/lib/icons/method.png +0 -0
- data/lib/icons/module.png +0 -0
- metadata +65 -0
data/lib/icons/class.png
ADDED
Binary file
|
Binary file
|
Binary file
|
metadata
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.8.4
|
3
|
+
specification_version: 1
|
4
|
+
name: fxri
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.1.0
|
7
|
+
date: 2005-02-20
|
8
|
+
summary: "Graphical interface to the RI documentation, with search engine."
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: martin.ankerl@gmail.com
|
12
|
+
homepage: http://fxri.rubyforge.org/
|
13
|
+
rubyforge_project: fxri
|
14
|
+
description: "FxRi is an FXRuby interface to the RI documentation, with a search engine that
|
15
|
+
allows for search-on-typing."
|
16
|
+
autorequire:
|
17
|
+
default_executable:
|
18
|
+
bindir: "."
|
19
|
+
has_rdoc: false
|
20
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
21
|
+
requirements:
|
22
|
+
-
|
23
|
+
- ">"
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: 0.0.0
|
26
|
+
version:
|
27
|
+
platform: ruby
|
28
|
+
authors: []
|
29
|
+
files:
|
30
|
+
- lib
|
31
|
+
- fxri
|
32
|
+
- fxri.gemspec
|
33
|
+
- lib/FoxDisplayer.rb
|
34
|
+
- lib/icons
|
35
|
+
- lib/Recursive_Open_Struct.rb
|
36
|
+
- lib/RiManager.rb
|
37
|
+
- lib/Globals.rb
|
38
|
+
- lib/fxirb.rb
|
39
|
+
- lib/Packet_Item.rb
|
40
|
+
- lib/Search_Engine.rb
|
41
|
+
- lib/Empty_Text_Field_Handler.rb
|
42
|
+
- lib/FoxTextFormatter.rb
|
43
|
+
- lib/Packet_List.rb
|
44
|
+
- lib/Icon_Loader.rb
|
45
|
+
- lib/icons/module.png
|
46
|
+
- lib/icons/method.png
|
47
|
+
- lib/icons/class.png
|
48
|
+
test_files: []
|
49
|
+
rdoc_options: []
|
50
|
+
extra_rdoc_files: []
|
51
|
+
executables:
|
52
|
+
- fxri
|
53
|
+
extensions: []
|
54
|
+
requirements: []
|
55
|
+
dependencies:
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: fxruby
|
58
|
+
version_requirement:
|
59
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
60
|
+
requirements:
|
61
|
+
-
|
62
|
+
- ">="
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: 1.2.0
|
65
|
+
version:
|