Greg Navis

Results 39 comments of Greg Navis

@hlascelles, thanks for clarification. How did you set up Active Record for multiple schemas?

In my case `fields_for` didn't work but this did: ```slim == f.simple_fields_for(:children) { |form| cell(AnotherCell, form.object, f: form).to_s.html_safe }.to_s ```

I'm also running into this problem in my project. `provider_ignores_state` is definitely at most a short-term countermeasure. Another problem it causes is that **if your logs are littered with false...

@manuelmeurer, thank you for reporting. @fatkodima, thanks for the quick fix. I'm reopening the issue as the fix hasn't been released yet.

Thanks for opening the issue, @owst! I'm working hard on adding support for multi-database systems, so expect an update soon. Would you be willing to test a release candidate?

@owst, actually, yes, I've made some progress, but it's not done yet. I released [`transient_record`](https://github.com/gregnavis/transient_record) 2.0 that supports multiple databases. That was a prerequisite for adding multi-database test cases to...

@fatkodima, please rebase and it's good to merge!

@fatkodima, I'm closing this PR as it seems to be no longer relevant after [these changes](https://github.com/gregnavis/active_record_doctor/blob/master/lib/active_record_doctor/detectors/base.rb#L179-L182).

Here's my attempt at fixing the problem. The colours of the fold are identical to that of the sidebar. What do you think? ![vim](https://f.cloud.github.com/assets/90490/1263802/afb426e0-2c56-11e3-9aae-60297335d3c0.png)

@matthewd, wow, seems I was confused about Postgres arrays. I was assuming that putting `type[]` (which is what `array: true` does) on a column makes it a one-dimensional array, but...