Thomas

Results 20 comments of Thomas

For people that needs I18n, use `18n.t('errors.messages.invalid')` The complete code (from @francois-belle ): ```ruby # app/models/concerns/email_validator.rb require 'uri' class EmailValidator < ActiveModel::Validator def validate(record) return if record.email.match?(URI::MailTo::EMAIL_REGEXP) record.errors[:email]

Hi @waiting-for-dev Thank you for pointing out it was required and listed in the gemspec. I update the PR to point to the new repository and updated the title of...

Hi @ankane Thank you for the reply and your patience. I known it was to bit me that I didn't include the code to reproduce the bug. Finally, I was...

`string_value` with `a`: no error

Regarding low details implementation, for `ActiveRecord::Base.connection.execute(sql).entries`: - mysql2: returns an array (need to use an index, eg: `row[0]`) - activerecord-trilogy-adapter (Rails

I reproduced the binary issue. Even the `column_type` is empty. I'm a bit puzzled on how to fix it in a correct way. In #468, it is mentioned that the...

I feel that json fields are more used then binary fields. Json is readable by default, binary is not. If there's a manual effort to do, personally I would put...

Updated in another PR. Closing it.

@castwide any reservation to update to `rbs` 3.0?

To get the expected line number: ```ruby count = CSV.parse(task.csv_content, headers: true).count ``` I wonder if it has been considered but not included for performance or memory concerns.