Taketo Takashima

Results 18 issues of Taketo Takashima

It optimize mysql query with trilogy gem fixed #221 - after fix with trilogy gem (same query with mysql2 gem) ``` Delayed::Backend::ActiveRecord::Job Update All (0.7ms) UPDATE `delayed_jobs` SET `delayed_jobs`.`locked_at` =...

It does not optimize mysql query with trilogy gem. https://github.com/trilogy-libraries/trilogy ### Expected behavior It exec optimized mysql query with trilogy gem. ### Actual behavior - with trilogy gem ``` Delayed::Backend::ActiveRecord::Job...

It fixes comparing '0.0.0.0'/'::' to nil for == method. `IPAddr.new("0.0.0.0") == nil` and `nil == IPAddr.new("0.0.0.0")` will return same result of `false`. ```ruby # IPv4 IPAddr.new("0.0.0.0") == nil => false...

`IPAddr.new("0.0.0.0") == nil` and `nil == IPAddr.new("0.0.0.0")` return different result. ### Steps to reproduce ```ruby # IPv4 IPAddr.new("0.0.0.0") == nil => true # expected false nil == IPAddr.new('0.0.0.0') => false...

Add +/- methods to get an ipaddr instance greater/less than the original address by offset. the current `IPAddr#succ` only return next address, this `IPAddr#+` return any address with offset. ```...

### Motivation / Background This Pull Request has been created because fixes #52364 ### Detail This Pull Request changes to add conditional values of IPAddr class for TagHelper#tag_option. It outputs...

actionview

### Steps to reproduce ActionView::Helpers::FormHelper `text_field` / `text_field_tag` cannot outputs value attribute with ip address prefix when text_field / text_field_tag args of value is IPAddr with prefix. It may cause...

stale

When use webpack/sass-loader of modern Sass JS API, it raise build error with can't find a scss path of bootstrap package. ### Steps to reproduce: ``` Can't find stylesheet to...