Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
216b0517
Commit
216b0517
authored
Apr 15, 2014
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2063 from bovi/update_language_doc
Improve Language Documentation
parents
5138f62d
c53846a2
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
563 additions
and
564 deletions
+563
-564
doc/language/Core.md
doc/language/Core.md
+512
-542
doc/language/generator.rb
doc/language/generator.rb
+9
-1
doc/language/mrbdoc/lib/mrbdoc_docu.rb
doc/language/mrbdoc/lib/mrbdoc_docu.rb
+25
-20
doc/language/mrbdoc/mrbdoc.rb
doc/language/mrbdoc/mrbdoc.rb
+17
-1
No files found.
doc/language/Core.md
View file @
216b0517
This diff is collapsed.
Click to expand it.
doc/language/generator.rb
View file @
216b0517
#!/usr/bin/env ruby
require
'pty'
c_dir
=
File
.
dirname
(
__FILE__
)
MRUBY_ROOT
=
File
.
expand_path
(
"
#{
c_dir
}
/../.."
)
DOC_DIR
=
File
.
expand_path
(
c_dir
)
puts
`
#{
DOC_DIR
}
/mrbdoc/mrbdoc.rb
#{
MRUBY_ROOT
}
#{
DOC_DIR
}
`
cmd
=
"ruby
#{
DOC_DIR
}
/mrbdoc/mrbdoc.rb
#{
MRUBY_ROOT
}
#{
DOC_DIR
}
false"
IO
.
popen
(
cmd
,
"r+"
)
do
|
io
|
io
.
close_write
while
line
=
io
.
gets
puts
line
end
end
doc/language/mrbdoc/lib/mrbdoc_docu.rb
View file @
216b0517
class
MRBDoc
def
write_documentation
dir
,
&
block
def
write_documentation
dir
,
cfg
,
&
block
block
.
call
"MRBDOC
\t
write to
#{
File
.
expand_path
(
dir
)
}
"
write
(
dir
)
do
|
progress
|
write
(
dir
,
cfg
)
do
|
progress
|
block
.
call
progress
end
end
private
def
write
dir
File
.
open
(
File
.
expand_path
(
'Core.md'
,
dir
),
'w+'
)
do
|
io
|
print_core_classes
(
io
)
print_core_modules
(
io
)
def
write
dir
,
cfg
File
.
open
(
File
.
expand_path
(
'Core.md'
,
dir
),
'w
b
+'
)
do
|
io
|
print_core_classes
(
io
,
cfg
)
print_core_modules
(
io
,
cfg
)
end
end
...
...
@@ -32,7 +32,7 @@ class MRBDoc
core_list
end
def
print_core_classes
(
io
)
def
print_core_classes
(
io
,
cfg
)
core_list
=
get_core_list
:each_class
io
.
puts
"# Core Classes
\n\n
"
core_list
.
sort
.
each
do
|
name
,
hsh
|
...
...
@@ -51,12 +51,12 @@ ISO Code | Mixins | Source File
#{
iso
}
|
#{
mixins
}
|
#{
file
}
CLASS
print_class_methods
(
io
,
hsh
)
print_methods
(
io
,
hsh
)
print_class_methods
(
io
,
hsh
,
cfg
)
print_methods
(
io
,
hsh
,
cfg
)
end
end
def
print_core_modules
(
io
)
def
print_core_modules
(
io
,
cfg
)
core_list
=
get_core_list
:each_module
io
.
puts
"# Core Modules
\n\n
"
core_list
.
sort
.
each
do
|
name
,
hsh
|
...
...
@@ -73,29 +73,34 @@ ISO Code | Source File
#{
iso
}
|
#{
file
}
CLASS
print_class_methods
(
io
,
hsh
)
print_methods
(
io
,
hsh
)
print_class_methods
(
io
,
hsh
,
cfg
)
print_methods
(
io
,
hsh
,
cfg
)
end
end
def
print_methods
(
io
,
hsh
)
def
print_methods
(
io
,
hsh
,
cfg
)
return
unless
hsh
[
:methods
].
size
>
0
io
.
puts
"### Methods
\n\n
"
hsh
[
:methods
].
sort
.
each
do
|
met_name
,
met_hsh
|
print_method
(
io
,
met_name
,
met_hsh
)
print_method
(
io
,
met_name
,
met_hsh
,
cfg
)
end
end
def
print_class_methods
(
io
,
hsh
)
def
print_class_methods
(
io
,
hsh
,
cfg
)
return
unless
hsh
[
:class_methods
].
size
>
0
io
.
puts
"### Class Methods
\n\n
"
hsh
[
:class_methods
].
sort
.
each
do
|
met_name
,
met_hsh
|
print_method
(
io
,
met_name
,
met_hsh
)
print_method
(
io
,
met_name
,
met_hsh
,
cfg
)
end
end
def
print_method
(
io
,
met_name
,
met_hsh
)
line_no
=
find_c_func
(
met_hsh
[
:c_func
])[
:line_no
]
def
print_method
(
io
,
met_name
,
met_hsh
,
cfg
)
if
cfg
[
:print_line_no
]
line_no_head
=
'| Line'
line_no
=
"|
#{
find_c_func
(
met_hsh
[
:c_func
])[
:line_no
]
}
"
else
line_no
,
line_no_head
=
''
,
''
end
file
=
find_c_file
(
met_hsh
[
:rb_class
],
met_hsh
[
:c_func
])
file
=
file
.
split
(
"
#{
@dir
}
/"
)[
1
]
iso
=
met_hsh
[
:iso
]
...
...
@@ -104,9 +109,9 @@ CLASS
io
.
puts
<<
METHOD
####
#{
met_name
}
ISO Code | Source File | C Function
| Line
ISO Code | Source File | C Function
#{
line_no_head
}
--- | --- | ---
#{
iso
}
|
#{
file
}
|
#{
met_hsh
[
:c_func
]
}
|
#{
line_no
}
#{
iso
}
|
#{
file
}
|
#{
met_hsh
[
:c_func
]
}
#{
line_no
}
METHOD
end
...
...
doc/language/mrbdoc/mrbdoc.rb
View file @
216b0517
...
...
@@ -7,16 +7,32 @@ require 'mrbdoc_docu'
MRUBY_ROOT
=
ARGV
[
0
]
DOC_ROOT
=
ARGV
[
1
]
_WRITE_LINE_NO
=
ARGV
[
2
]
STDOUT
.
sync
=
true
raise
ArgumentError
.
new
'mruby root missing!'
if
MRUBY_ROOT
.
nil?
raise
ArgumentError
.
new
'doc root missing!'
if
DOC_ROOT
.
nil?
if
_WRITE_LINE_NO
.
nil?
WRITE_LINE_NO
=
true
else
case
_WRITE_LINE_NO
when
'true'
WRITE_LINE_NO
=
true
when
'false'
WRITE_LINE_NO
=
false
else
raise
ArgumentError
.
new
'Line no parameter has to be false or true!'
end
end
mrbdoc
=
MRBDoc
.
new
mrbdoc
.
analyze_code
MRUBY_ROOT
do
|
progress
|
puts
progress
end
mrbdoc
.
write_documentation
DOC_ROOT
do
|
progress
|
cfg
=
{
:print_line_no
=>
WRITE_LINE_NO
}
mrbdoc
.
write_documentation
DOC_ROOT
,
cfg
do
|
progress
|
puts
progress
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment