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
9763eee6
Commit
9763eee6
authored
Jun 04, 2014
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add dependency from mruby-string-utf8 to mruby-string-ext to ensure loading order
parent
c31c6c08
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
mrbgems/mruby-string-utf8/mrbgem.rake
mrbgems/mruby-string-utf8/mrbgem.rake
+1
-0
mrbgems/mruby-string-utf8/test/string.rb
mrbgems/mruby-string-utf8/test/string.rb
+1
-1
No files found.
mrbgems/mruby-string-utf8/mrbgem.rake
View file @
9763eee6
...
...
@@ -2,4 +2,5 @@ MRuby::Gem::Specification.new('mruby-string-utf8') do |spec|
spec
.
license
=
'MIT'
spec
.
author
=
'mruby developers'
spec
.
summary
=
'UTF-8 support in String class'
spec
.
add_dependency
(
'mruby-string-ext'
,
:core
=>
'mruby-string-ext'
)
end
mrbgems/mruby-string-utf8/test/string.rb
View file @
9763eee6
...
...
@@ -67,6 +67,6 @@ assert('String#rindex') do
assert_equal
3
,
str
.
rindex
(
'ち'
,
10
)
end
assert
(
'String#chr'
)
do
assert
(
'String#chr
(utf-8)
'
)
do
assert_equal
"こ"
,
"こんにちは世界!"
.
chr
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