Chris Gunther

Results 25 issues of Chris Gunther

I suspect this was leftover from when Bootstrap was a dependency as it doesn't seem to be used by the library anywhere else. If you happen to use this with...

This is a follow up to #549 to improve usage in a single tenant scenario where you might configure NetSuite on the main thread (ie. via Rails initializer), then make...

Both `Invoice` and `CreditMemo` records (as well as many other records) use the same search fields for the returned basic results, `TransactionSearchRowBasic`, so rather than repeat the fields for each...

It appears bcd3b8e1ac5a70e2b65e148323f2a54bf35e5156 added support for RSpec 3, however the dependency in the gemspec still locks RSpec to a version on the 2.X series.

twilio-ruby v3.13.1 added the block configure syntax: https://github.com/twilio/twilio-ruby/commit/5e5485fbf76c5fcc4b8bf1d04c1e288a9104b9e9 I moved `Account` and `Message` out of the `Twilio::REST::Client` namespace to match the official gem's structure and take advantage of most of...

ActiveRecord::Base is lazily loaded by Rails and we don't want to prematurely load it, otherwise it may be loaded before initialization runs, then any configuration set in initialization is not...

Prior to Rails 6.1, the arguments to `joins!` were compacted, so if you called `selecting_distance_from` directly on the geolocated model where `through_table` was `nil`, it'd be compacted away and a...

While the unit shouldn't change the result, if you order and select with a distinct call (ie. `Model.distinct.selecting_distance_from(...).order_by_distance(...)`), Postgres requires all ordering values to also be selected. Previously, in such...

Previously, if you called `Model.select('my_column').selecting_distance_from`, those columns you explicitly selected would be lost in the resulting query as `selecting_distance_from` completely replaced the selected columns. Now, `selecting_distance_from` will append (set union)...

Travis stopped building for open source in June 2021. I'm testing Ruby 2.4+ and activerecord 4.2+, using Rails's CI as a guide for which Ruby versions to test each activerecord...