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
56de911b
Commit
56de911b
authored
Dec 09, 2019
by
dearblue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add "mruby developers" into some gems; Resolve #4709
It is writing side by side with the original authors.
parent
694089fa
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
8 additions
and
4 deletions
+8
-4
mrbgems/mruby-io/README.md
mrbgems/mruby-io/README.md
+1
-0
mrbgems/mruby-io/mrbgem.rake
mrbgems/mruby-io/mrbgem.rake
+1
-1
mrbgems/mruby-pack/README.md
mrbgems/mruby-pack/README.md
+1
-0
mrbgems/mruby-pack/mrbgem.rake
mrbgems/mruby-pack/mrbgem.rake
+1
-1
mrbgems/mruby-sleep/mrbgem.rake
mrbgems/mruby-sleep/mrbgem.rake
+1
-1
mrbgems/mruby-sleep/src/mrb_sleep.c
mrbgems/mruby-sleep/src/mrb_sleep.c
+1
-0
mrbgems/mruby-socket/README.md
mrbgems/mruby-socket/README.md
+1
-0
mrbgems/mruby-socket/mrbgem.rake
mrbgems/mruby-socket/mrbgem.rake
+1
-1
No files found.
mrbgems/mruby-io/README.md
View file @
56de911b
...
...
@@ -171,6 +171,7 @@ Add the line below to your `build_config.rb`:
## License
Copyright (c) 2013 Internet Initiative Japan Inc.
Copyright (c) 2017 mruby developers
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
...
...
mrbgems/mruby-io/mrbgem.rake
View file @
56de911b
MRuby
::
Gem
::
Specification
.
new
(
'mruby-io'
)
do
|
spec
|
spec
.
license
=
'MIT'
spec
.
authors
=
'Internet Initiative Japan Inc.'
spec
.
authors
=
[
'Internet Initiative Japan Inc.'
,
'mruby developers'
]
spec
.
summary
=
'IO and File class'
spec
.
cc
.
include_paths
<<
"
#{
build
.
root
}
/src"
...
...
mrbgems/mruby-pack/README.md
View file @
56de911b
...
...
@@ -49,6 +49,7 @@ There is no dependency on other mrbgems.
## License
Copyright (c) 2012 Internet Initiative Japan Inc.
Copyright (c) 2017 mruby developers
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
...
...
mrbgems/mruby-pack/mrbgem.rake
View file @
56de911b
MRuby
::
Gem
::
Specification
.
new
(
'mruby-pack'
)
do
|
spec
|
spec
.
license
=
'MIT'
spec
.
authors
=
'Internet Initiative Japan Inc.'
spec
.
authors
=
[
'Internet Initiative Japan Inc.'
,
'mruby developers'
]
spec
.
summary
=
'Array#pack and String#unpack method'
spec
.
cc
.
include_paths
<<
"
#{
build
.
root
}
/src"
...
...
mrbgems/mruby-sleep/mrbgem.rake
View file @
56de911b
MRuby
::
Gem
::
Specification
.
new
(
'mruby-sleep'
)
do
|
spec
|
spec
.
license
=
'MIT'
spec
.
authors
=
'MATSUMOTO Ryosuke'
spec
.
authors
=
[
'MATSUMOTO Ryosuke'
,
'mruby developers'
]
spec
.
version
=
'0.0.1'
end
mrbgems/mruby-sleep/src/mrb_sleep.c
View file @
56de911b
...
...
@@ -2,6 +2,7 @@
** mrb_sleep - sleep methods for mruby
**
** Copyright (c) mod_mruby developers 2012-
** Copyright (c) mruby developers 2018
**
** Permission is hereby granted, free of charge, to any person obtaining
** a copy of this software and associated documentation files (the
...
...
mrbgems/mruby-socket/README.md
View file @
56de911b
...
...
@@ -35,6 +35,7 @@ Date: Tue, 21 May 2013 04:31:30 GMT
## License
Copyright (c) 2013 Internet Initiative Japan Inc.
Copyright (c) 2017 mruby developers
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
...
...
mrbgems/mruby-socket/mrbgem.rake
View file @
56de911b
MRuby
::
Gem
::
Specification
.
new
(
'mruby-socket'
)
do
|
spec
|
spec
.
license
=
'MIT'
spec
.
authors
=
'Internet Initiative Japan'
spec
.
authors
=
[
'Internet Initiative Japan'
,
'mruby developers'
]
spec
.
summary
=
'standard socket class'
spec
.
cc
.
include_paths
<<
"
#{
build
.
root
}
/src"
...
...
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