langhelp 0.9.8
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/Changes +2530 -0
- data/bin/mklanghelp +50 -0
- data/data/langhelp/config.sample +889 -0
- data/files +39 -0
- data/graphviz-dot.jpg +0 -0
- data/langhelp.en.html +409 -0
- data/langhelp.en.rd +390 -0
- data/langhelp.ja.html +524 -0
- data/langhelp.ja.rd +487 -0
- data/lib/el4r/emacsruby/autoload/50langhelp.rb +2 -0
- data/lib/el4r/emacsruby/langhelp.rb +864 -0
- data/lib/el4r/emacsruby/test-langhelp.rb +300 -0
- data/lib/langhelp/langhelp-base.rb +649 -0
- data/lib/langhelp/langhelp-sub.rb +1023 -0
- data/lib/langhelp/lh_lua.rb +25 -0
- data/lib/langhelp/lh_perl.rb +112 -0
- data/lib/langhelp/lh_php.rb +34 -0
- data/lib/langhelp/lh_python.rb +31 -0
- data/lib/langhelp/lh_ruby.rb +400 -0
- data/lib/langhelp/mklanghelp.rb +140 -0
- data/lib/langhelp/parse-info.rb +145 -0
- data/ri.jpg +0 -0
- data/setup.rb +1551 -0
- data/test/a_classes.lst +2 -0
- data/test/a_methods.lst +2 -0
- data/test/b_classes.lst +2 -0
- data/test/b_methods.lst +2 -0
- data/test/c_methods.lst +4 -0
- data/test/common.rb +15 -0
- data/test/d_methods.lst +4 -0
- data/test/langhelp.e +566 -0
- data/test/ruby.e +3 -0
- data/test/tagify01-before.html +11 -0
- data/test/tagify02-before.html +11 -0
- data/test/test-base.rb +538 -0
- data/test/test-command.rb +92 -0
- data/test/test-parse-info.rb +175 -0
- data/test/test-ruby.rb +242 -0
- data/test/testdoc.rd +6 -0
- metadata +84 -0
data/test/testdoc.rd
ADDED
metadata
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.0
|
3
|
+
specification_version: 1
|
4
|
+
name: langhelp
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.9.8
|
7
|
+
date: 2006-09-21 00:00:00 +09:00
|
8
|
+
summary: Integrated help system in EmacsRuby
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email:
|
12
|
+
homepage:
|
13
|
+
rubyforge_project:
|
14
|
+
description: Langhelp creates an index of documents of various programming languages and shell commands. Languages enables you to search documents instantly in Emacs. If you are a programmer, then you may sometimes wonder, what is the usage of this function? If you use Unices, then you may wonder, what is the usage of this command? Langhelp answers the question INSTANTLY. Langhelp is an practical example of EmacsRuby script.
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: false
|
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
|
+
|
31
|
+
files:
|
32
|
+
- Changes
|
33
|
+
- bin/mklanghelp
|
34
|
+
- data/langhelp/config.sample
|
35
|
+
- files
|
36
|
+
- graphviz-dot.jpg
|
37
|
+
- langhelp.en.html
|
38
|
+
- langhelp.en.rd
|
39
|
+
- langhelp.ja.html
|
40
|
+
- langhelp.ja.rd
|
41
|
+
- lib/el4r/emacsruby/autoload/50langhelp.rb
|
42
|
+
- lib/el4r/emacsruby/langhelp.rb
|
43
|
+
- lib/el4r/emacsruby/test-langhelp.rb
|
44
|
+
- lib/langhelp/langhelp-base.rb
|
45
|
+
- lib/langhelp/langhelp-sub.rb
|
46
|
+
- lib/langhelp/lh_lua.rb
|
47
|
+
- lib/langhelp/lh_perl.rb
|
48
|
+
- lib/langhelp/lh_php.rb
|
49
|
+
- lib/langhelp/lh_python.rb
|
50
|
+
- lib/langhelp/lh_ruby.rb
|
51
|
+
- lib/langhelp/mklanghelp.rb
|
52
|
+
- lib/langhelp/parse-info.rb
|
53
|
+
- ri.jpg
|
54
|
+
- setup.rb
|
55
|
+
- test/a_classes.lst
|
56
|
+
- test/a_methods.lst
|
57
|
+
- test/b_classes.lst
|
58
|
+
- test/b_methods.lst
|
59
|
+
- test/c_methods.lst
|
60
|
+
- test/common.rb
|
61
|
+
- test/d_methods.lst
|
62
|
+
- test/langhelp.e
|
63
|
+
- test/ruby.e
|
64
|
+
- test/tagify01-before.html
|
65
|
+
- test/tagify02-before.html
|
66
|
+
- test/test-base.rb
|
67
|
+
- test/test-command.rb
|
68
|
+
- test/test-parse-info.rb
|
69
|
+
- test/test-ruby.rb
|
70
|
+
- test/testdoc.rd
|
71
|
+
test_files: []
|
72
|
+
|
73
|
+
rdoc_options: []
|
74
|
+
|
75
|
+
extra_rdoc_files: []
|
76
|
+
|
77
|
+
executables: []
|
78
|
+
|
79
|
+
extensions: []
|
80
|
+
|
81
|
+
requirements:
|
82
|
+
- none
|
83
|
+
dependencies: []
|
84
|
+
|