hiphapis (Johan Kim)
- Login: hiphapis
- Email: hiphapis@gmail.com
- Registered on: 03/23/2015
- Last sign in: 03/23/2015
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 2 | 2 |
Activity
04/08/2015
-
12:52 AM Ruby Bug #11036: In iterlation, '#'(String) is gone
- Oops. it's my fault. sorry!
plz delete this issue
04/07/2015
-
01:14 AM Ruby Bug #11036 (Rejected): In iterlation, '#'(String) is gone
- field `color` is hex code. ex) `#123123`
```erb
<% Product.all.each do |product| %>
<% byebug %>
<h4 style="background-color: <%= product.color # first called %>; color: <%= text_color_by_bg(product.color) %>"><%= product.name %>...
03/23/2015
-
10:31 AM Ruby Bug #10997 (Rejected): String in Hash 'prepend', '<<' bug
- i used with Rails console
**Only String is great**
```ruby
original = "a" #=> "a"
clone = original.clone #=> "a"
clone.prepend("prepend_") #=> "prepend_a"
clone #=> "prepend_a"
original #=> "a"
```
**but String in Hash then ...