Philippe Creux
Philippe Creux
Hello, I'd love to use this plugin but I don't feel like installing the libs to build it. Could you provide the hpi on github downloads? Thanks!
I did: `pimpmychangelog gregbell active_admin CHANGELOG.md > CHANGELOG.md` Looks like the shell empties CHANGELOG.md before pimpmychangelog can even read it. Similar behavior if you to `cat my_file > my_file`. `my_file`...
When you already have reached your quota, `aws-rotate-keys` will fail to create a new access key. ``` Creating access key... /gems/aws-sdk-core-2.6.44/lib/seahorse/client/plugins/raise_response_errors.rb:15:in `call': Cannot exceed quota for AccessKeysPerUser: 2 (Aws::IAM::Errors::LimitExceeded) /gems/2.3.0/gems/aws-rotate-keys-0.1.1/lib/aws_rotate_keys.rb:50:in...
FreshBooks API returns invoices with the following format: ``` xml 123 234 ``` HTTParty turns this into the hash: ``` ruby { invoice: { lines: { line_id: 123 } }...
### Describe the bug Calling `union_relations` on relations with an array column generates invalid SQL: ``` syntax error at or near "ARRAY" cast("my_array" as ARRAY) as "my_array" ``` ### Steps...
Fixes #1154. `ko.yml` is the only translation file with "%{attribute}" in the `errors.messages` translations. That raises errors since rails does not pass `%{attribute}`. I tasked ChatGPT/codex with fixing these translations,...
When the locale is set to Korean, `ActiveModel#validate!` can raise the following error: **I18n::MissingInterpolationArgument** ``` missing interpolation argument :attribute in "%{attribute}에 대한 데이터 검증에 실패하였습니다: %{errors}" ({:errors=>"ERROR"} given) ``` This...