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
563ebbf0
Unverified
Commit
563ebbf0
authored
Dec 19, 2020
by
Yukihiro "Matz" Matsumoto
Committed by
GitHub
Dec 19, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5229 from jbampton/fix-links
🔒
Fix missing HTTPS on links
parents
08d43652
f7c5c00d
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
CONTRIBUTING.md
CONTRIBUTING.md
+1
-1
README.md
README.md
+2
-2
doc/guides/compile.md
doc/guides/compile.md
+1
-1
mrbgems/mruby-compiler/core/y.tab.c
mrbgems/mruby-compiler/core/y.tab.c
+1
-1
mrbgems/mruby-random/src/random.c
mrbgems/mruby-random/src/random.c
+1
-1
No files found.
CONTRIBUTING.md
View file @
563ebbf0
...
...
@@ -61,5 +61,5 @@ language itself. Please note the following hints for your Ruby code:
#### Comply with the Ruby standard (ISO/IEC 30170:2012)
mruby is currently targeting to execute Ruby code which complies to ISO/IEC
30170:2012 (http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=59579),
30170:2012 (http
s
://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=59579),
unless there's a clear reason, e.g. the latest Ruby has changed behavior from ISO.
README.md
View file @
563ebbf0
...
...
@@ -86,12 +86,12 @@ Please ask us if you want to distribute your code under another license.
## How to Contribute
See the
[
contribution guidelines
][
contribution-guidelines
]
, and then send a pull
request to
<http://github.com/mruby/mruby>
. We consider you have granted
request to
<http
s
://github.com/mruby/mruby>
. We consider you have granted
non-exclusive right to your contributed code under MIT license. If you want to
be named as one of mruby developers, please include an update to the AUTHORS
file in your pull request.
[
ISO-standard
]:
http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=59579
[
ISO-standard
]:
http
s
://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=59579
[
build-status-img
]:
https://travis-ci.org/mruby/mruby.svg?branch=master
[
contribution-guidelines
]:
https://github.com/mruby/mruby/blob/master/CONTRIBUTING.md
[
travis-ci
]:
https://travis-ci.org/mruby/mruby
doc/guides/compile.md
View file @
563ebbf0
...
...
@@ -76,7 +76,7 @@ toolchain :clang
#### Visual Studio 2010, 2012 and 2013
Toolchain configuration for Visual Studio on Windows. If you use the
[
Visual Studio Command Prompt
](
http://msdn.microsoft.com/en-us/library/ms229859\(v=vs.110\
)
.aspx),
[
Visual Studio Command Prompt
](
http
s
://msdn.microsoft.com/en-us/library/ms229859\(v=vs.110\
)
.aspx),
you normally do not have to specify this manually, since it gets automatically detected by our build process.
```
ruby
toolchain
:visualcpp
...
...
mrbgems/mruby-compiler/core/y.tab.c
View file @
563ebbf0
...
...
@@ -16,7 +16,7 @@
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
along with this program. If not, see <http
s
://www.gnu.org/licenses/>. */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
...
...
mrbgems/mruby-random/src/random.c
View file @
563ebbf0
...
...
@@ -19,7 +19,7 @@ To the extent possible under law, the author has dedicated all copyright
and related and neighboring rights to this software to the public domain
worldwide. This software is distributed without any warranty.
See <http://creativecommons.org/publicdomain/zero/1.0/>. */
See <http
s
://creativecommons.org/publicdomain/zero/1.0/>. */
#include <stdint.h>
...
...
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