Owen Stephens
Owen Stephens
This adds a new configuration entry, `FIGARO_SILENCE_STRING_WARNINGS`, which if set to `true`/`'true'` will silence warnings like `WARNING: Use strings for Figaro configuration. 100 was converted to "100".`
This might be an `arel` bug rather than a `baby_squeel` bug, apologies if so! #### Issue When using Active Record 4, ``` Foo.reorder(:x).last ``` appears to not be equivalent to...
## Description We have a table named `events`. Autocomplete doesn't work in query involving this table (at least for a JOIN condition and a SELECT column), _unless_ I quote the...
## Description On master (`d5cdd2ad4ea5c70dae766f2e00a71510e9c76b58`) escape/alt-enter no longer run a multi-line query when in safe mode, but instead inserts a new line. This seems to have originated in https://github.com/dbcli/pgcli/pull/1065 -...
## Description `\ns` with multiline and Vim input mode saves the query when pressing Enter in Insert mode, when it should insert a newline instead Usually when using multiline Vim...
Using `e367f7b` the following code is misindented: ```ruby x_to_y_mapping = { 'x_one' => %i[ y_one y_two ], 'x_two' => %i[ y_three y_four ] } ``` becomes: ```ruby x_to_y_mapping = {...
The follow code is misaligned by vim-ruby `e865f7c`: ``` some_method( [11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30]...
Using `e865f7c` the following source code is incorrectly indented: ``` [ [ :a, :b ], ].each do |arr| use(arr) end def use(arr) puts arr end ``` Note that all lines...
As part of our test suite we run ActiveRecordDoctor and also create anonymous subclasses of `ActiveRecord::Base` - the latter causes an exception in the former ``` Traceback (most recent call...
# Description If I try and add a length constraint to a table whose name is given with an explicit schema, the generate SQL is not valid: ``` add_length_constraint 'myschema.my_relations',...