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
dee895ae
Unverified
Commit
dee895ae
authored
Jun 17, 2021
by
Yukihiro "Matz" Matsumoto
Committed by
GitHub
Jun 17, 2021
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5482 from jbampton/standardize-backtick-commands
Standardize commands inside backticks
parents
7b0eb1f9
d08ea8a9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
CONTRIBUTING.md
CONTRIBUTING.md
+1
-1
doc/guides/compile.md
doc/guides/compile.md
+4
-4
doc/guides/mrbgems.md
doc/guides/mrbgems.md
+2
-2
No files found.
CONTRIBUTING.md
View file @
dee895ae
...
...
@@ -10,7 +10,7 @@ things in mind before submitting your pull request:
*
Work on the latest possible state of
**mruby/master**
*
Create a branch which is dedicated to your change
*
Test your changes before creating a pull request (
`
``rake test``
`
)
*
Test your changes before creating a pull request (
`
rake test
`
)
*
If possible write a test case which confirms your change
*
Don't mix several features or bug-fixes in one pull request
*
Create a meaningful commit message
...
...
doc/guides/compile.md
View file @
dee895ae
...
...
@@ -138,18 +138,18 @@ C Compiler has header searcher to detect installed library.
If you need an include path of header file use
`search_header_path`
:
```
ruby
# Searches `
``iconv.h``
`.
# Searches `
iconv.h
`.
# If found it will return include path of the header file.
# Otherwise it will return nil
.
# Otherwise it will return nil.
fail
'iconv.h not found'
unless
conf
.
cc
.
search_header_path
'iconv.h'
```
If you need a full file name of header file use
`search_header`
:
```
ruby
# Searches `
``iconv.h``
`.
# Searches `
iconv.h
`.
# If found it will return full path of the header file.
# Otherwise it will return nil
.
# Otherwise it will return nil.
iconv_h
=
conf
.
cc
.
search_header
'iconv.h'
print
"iconv.h found:
#{
iconv_h
}
\n
"
```
...
...
doc/guides/mrbgems.md
View file @
dee895ae
...
...
@@ -55,8 +55,8 @@ conf.gem mgem: 'mruby-redis', checksum_hash: '3446d19fc4a3f9697b5ddbf2a904f301c4
If there are missing dependencies, mrbgem dependencies solver will reference
mrbgem from the core or mgem-list.
To pull all gems from remote GIT repository on build, call
`
``rake -p``
`
,
or
`
``rake --pull-gems``
`
.
To pull all gems from remote GIT repository on build, call
`
rake -p
`
,
or
`
rake --pull-gems
`
.
NOTE:
`:bitbucket`
option supports only git. Hg is unsupported in this version.
...
...
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