Celso Dantas

Results 9 comments of Celso Dantas

Hey @nilay thanks for the report. I'm not using this gem myself anymore, so I'll take a look into the issue when I have some time. PRs are welcome too....

Hey guys! Thanks so much for hunting down this bug, but I think the fix needs to be somewhere else. https://github.com/celsodantas/protokoll/blob/master/lib/protokoll/formater.rb#L64-L69 record.updated_at.utc.strftime(update_event(options)).to_i ``` The issue I see using `Time.zone.now` is...

hehe yeah, you did. 😂 You are right about the timezone used by the Rails server. But `config.time_zone` is used to define a default timezone, and use cases might change...

Hey, I should update the README that I have not been using the gem in a long time (not working building any product), thus PR's a welcomed. 🙃

You should be able to access the counter table with `Models::CustomAutoIncrement`. And there's straight way to reset the counter for now, you can `Models::CustomAutoIncrement.delete_all` (which will erase all counters for...

@josh this is separate rake task to copy compiled files without the digest. Why would this interfere with manifest GC process? > Wouldn't it make sense to put them some...

You can still have control of the assets policies from the assets server configuration (that's what we do at shopify). I don't see great benefits from serving these assets (they...

RSpec has the `focus` option: https://relishapp.com/rspec/rspec-core/v/2-6/docs/filtering/inclusion-filters The downside of `runtests($test_name_to_run)` and that we need to convert the test name to underscore and add to that list. The `focus` option was...