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
b03f1f78
Commit
b03f1f78
authored
Aug 11, 2018
by
Kazuhiro Sera
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix misspelling words in comments
parent
35be8b25
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
11 additions
and
11 deletions
+11
-11
doc/guides/mrbgems.md
doc/guides/mrbgems.md
+2
-2
include/mruby.h
include/mruby.h
+2
-2
minirake
minirake
+1
-1
mrbgems/mruby-bin-debugger/bintest/print.rb
mrbgems/mruby-bin-debugger/bintest/print.rb
+1
-1
mrbgems/mruby-compiler/core/codegen.c
mrbgems/mruby-compiler/core/codegen.c
+1
-1
mrbgems/mruby-socket/src/socket.c
mrbgems/mruby-socket/src/socket.c
+1
-1
test/t/literals.rb
test/t/literals.rb
+1
-1
test/t/module.rb
test/t/module.rb
+2
-2
No files found.
doc/guides/mrbgems.md
View file @
b03f1f78
...
...
@@ -179,11 +179,11 @@ Version requirement supports following operators:
When more than one version requirements is passed, the dependency must satisfy all of it.
You can have default gem to use as depedency when it's not defined in
*build_config.rb*
.
You can have default gem to use as depe
n
dency when it's not defined in
*build_config.rb*
.
When the last argument of
`add_dependency`
call is
`Hash`
, it will be treated as default gem information.
Its format is same as argument of method
`MRuby::Build#gem`
, expect that it can't be treated as path gem location.
When a special version of depedency is required,
When a special version of depe
n
dency is required,
use
`MRuby::Build#gem`
in
*build_config.rb*
to override default gem.
If you have conflicting GEMs use the following method:
...
...
include/mruby.h
View file @
b03f1f78
...
...
@@ -782,7 +782,7 @@ MRB_API struct RClass * mrb_define_module_under(mrb_state *mrb, struct RClass *o
#define MRB_ARGS_REQ(n) ((mrb_aspec)((n)&0x1f) << 18)
/**
* Funtion takes n optional arguments
* Fun
c
tion takes n optional arguments
*
* @param n
* The number of optional arguments.
...
...
@@ -790,7 +790,7 @@ MRB_API struct RClass * mrb_define_module_under(mrb_state *mrb, struct RClass *o
#define MRB_ARGS_OPT(n) ((mrb_aspec)((n)&0x1f) << 13)
/**
* Funtion takes n1 mandatory arguments and n2 optional arguments
* Fun
c
tion takes n1 mandatory arguments and n2 optional arguments
*
* @param n1
* The number of required arguments.
...
...
minirake
View file @
b03f1f78
...
...
@@ -95,7 +95,7 @@ module MiniRake
def
done?
;
@done
end
def
running?
;
@running
end
# Invoke the task if it is needed.
Prerequ
ites are invoked first.
# Invoke the task if it is needed.
Prerequis
ites are invoked first.
def
invoke
puts
"Invoke
#{
name
}
(already=[
#{
@already_invoked
}
], needed=[
#{
needed?
}
])"
if
$trace
return
if
@already_invoked
...
...
mrbgems/mruby-bin-debugger/bintest/print.rb
View file @
b03f1f78
...
...
@@ -317,7 +317,7 @@ TestConstNameSubClass.new.m()
bp = nil
SRC
# todo: wait for 'break' to be impl
i
mented
# todo: wait for 'break' to be impl
e
mented
tc = []
9.times { tc << {:cmd=>"s"} }
tc << {:cmd=>"p CONST", :exp=>"super class"}
...
...
mrbgems/mruby-compiler/core/codegen.c
View file @
b03f1f78
...
...
@@ -200,7 +200,7 @@ genop_peep(codegen_scope *s, mrb_code i, int val)
switch
(
c0
)
{
case
OP_MOVE
:
if
(
GETARG_A
(
i
)
==
GETARG_A
(
i0
))
{
/* skip overriden OP_MOVE */
/* skip overrid
d
en OP_MOVE */
s
->
pc
--
;
s
->
iseq
[
s
->
pc
]
=
i
;
}
...
...
mrbgems/mruby-socket/src/socket.c
View file @
b03f1f78
...
...
@@ -300,7 +300,7 @@ mrb_basicsocket_getpeereid(mrb_state *mrb, mrb_value self)
mrb_ary_push
(
mrb
,
ary
,
mrb_fixnum_value
((
mrb_int
)
egid
));
return
ary
;
#else
mrb_raise
(
mrb
,
E_RUNTIME_ERROR
,
"getpeereid is not avai
al
ble on this system"
);
mrb_raise
(
mrb
,
E_RUNTIME_ERROR
,
"getpeereid is not avai
la
ble on this system"
);
return
mrb_nil_value
();
#endif
}
...
...
test/t/literals.rb
View file @
b03f1f78
...
...
@@ -22,7 +22,7 @@ assert('Literals Numerical', '8.7.6.2') do
# decimal
assert_equal
999
,
0
d999
assert_equal
999
,
0
D999
# decimal sep
e
rator
# decimal sep
a
rator
assert_equal
10000000
,
10_000_000
assert_equal
10
,
1_0
# integer with exponent
...
...
test/t/module.rb
View file @
b03f1f78
...
...
@@ -699,7 +699,7 @@ end
end
end
# these assertions will not run without a #assert_sep
e
rately method
# these assertions will not run without a #assert_sep
a
rately method
#assert 'test_prepend_optmethod' do
# bug7983 = '[ruby-dev:47124] [Bug #7983]'
# assert_separately [], %{
...
...
@@ -807,7 +807,7 @@ end
assert_equal
([
m
,
c2
,
m
,
c1
],
c2
.
ancestors
[
0
,
4
],
"should accesisble prepended module in superclass"
)
end
# requires #assert_sep
e
rately
# requires #assert_sep
a
rately
#assert 'Module#prepend call super' do
# assert_separately([], <<-'end;') #do
# bug10847 = '[ruby-core:68093] [Bug #10847]'
...
...
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