Pedro Carmona

Results 14 comments of Pedro Carmona

I also have error locally for `rake db:drop`, when using the instructions of [octopus heroku follower](https://github.com/thiagopradi/octopus/wiki/Replication-with-Rails-on-Heroku) So far I found that active record postgres [establish_master_connection](https://github.com/rails/rails/blob/87eb1a26da0b1385af07a8347dcfd32998a614ee/activerecord/lib/active_record/tasks/postgresql_database_tasks.rb#L33) is establishing also proxy connections...

idea: Use liquid to build the sql queries: - instead of `{smart_variable}`, with liquid it would look like `{{smart_variable}}` - allows building dynamic sql with cycles. - also allows to...

@ankane is it possible to merge to master?

Hi @JonRowe, thank you for your fast response. I was on vacation, away from keyboard. I used main branch (had to tweak it to [look like 3.10.3](https://github.com/pedrocarmona/rspec-mocks/commit/1b45e45eb3bcfff59f9e3b2384a88fcf1d7c29c6) otherwise it would...

Hi @JonRowe, created a small project exemplifying the problem. The code is deployed in heroku, and for ruby 2 it works, but in ruby 3 it does not, however in...

In the following script there are two types of test, one with mocks, the other without mocks. executing this code in ruby 3: - (without mocks) 'returns the result of...

In order to fetch the required params for the initialize method, its possible to use this: ``` >> Multiplier.instance_method(:initialize).parameters => [[:keyreq, :quotient], [:keyreq, :data]] ``` source: https://bugs.ruby-lang.org/issues/17596 I think rspec-mocks...

Allows adding multiple attributes to the event via html, like: - record id, - relationship/parent/nested record id - trackid (custom id of object)

Could also remove `visitParams` and have a default hook for $view...