Gabriel Sobrinho

Results 59 issues of Gabriel Sobrinho

I'm not sure how to do that but I have a form which I have to submit on every input change. It's a filter form where the search must happen...

By calling something like: ```ruby Company.all.each do |company| company.employees.includes(:person).to_a end ``` We lose the goldiloader here because of the `includes`. Although, the includes itself shouldn't cause any issues if we...

We don't need to specify either allowing and rejecting. Fix #127

### Steps to reproduce We have some hooks on secondary connections like: ``` Rake::Task["db:migrate:auditing"].prereqs

stale

### Steps to reproduce ```ruby require 'bundler/inline' gemfile do gem 'activerecord' gem 'sqlite3' end require 'active_record' require 'sqlite3' ActiveRecord::Base.logger = Logger.new(STDOUT) ActiveRecord::Base.establish_connection( adapter: 'sqlite3', database: ':memory:' ) ActiveRecord::Base.connection.create_table :people, id:...

activerecord
attached PR

## Description We want to keep some fields private from the public access entirely. ## Steps to reproduce 1. Create one collection with two fields: name, sales 2. Create a...

Fix https://github.com/trusche/httplog/issues/136

Hi there! I created a module to prepend on HttpLog and check the content of data that is passed to `json_payload` and `data` seems to be already formatted: ``` [17]...

Regexps are more powerful: ```ruby HttpLog.configure do |config| config.filter_parameters = ( /date_?of_?birth|dob/ ) end module HttpLog class

Hi there, I would like to toggle certain URLs without restarting my app server. I have a admin panel to enable/disable logging for certain URLs and we would like to...