-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
upcase problem #2
Comments
Are you sure? It is tested by me and rspec for many times. Please, write your complete class? |
A simple class I tested right now. It works properly require "turkish_support"
class Test
using TurkishSupport
def hey(str)
str.upcase
end
end
Test.new.hey('içel') #=> İÇEL |
Sorry I am out of home. I will share with you a screenshot. |
As I mentioned in the readme, TurkishSupport uses refinements. So, you need $ require 'turkish_support'
=> true
$ using TurkishSupport
=> main
$ "içel".upcase
=> "İÇEL" On Fri, Apr 11, 2014 at 7:57 PM, Ender Ahmet Yurt
|
@marjinal1st thanks, it is same to me. @enderahmetyurt I think this is special to your bash. if you find any reason about the problem, please open the issue again. Thanks. |
Hey,
There is a problem with "i" character when upcasing it.
It should be "İÇEL".
The text was updated successfully, but these errors were encountered: