Paulo Fidalgo

Results 16 issues of Paulo Fidalgo

Similar to the jump from the end of block to the beginning, it would be really nice if we can do it from the beginning to the end.

For this example: ```ruby require 'happymapper' class Root include HappyMapper tag 'Working' element :name, String wrap 'mywraptag' do element :description, String element :number, Integer end element :code, String def description...

bug

I'm creating a XML serializer, that comes after a mapper and a validator, and they share the same methods, so a `code` method exists in both mapper and validator. To...

From the guides https://guides.rubyonrails.org/active_record_multiple_databases.html on multiple databases, we have the following `database.yml` file: ``` production: primary: database: my_primary_database user: root adapter: mysql primary_replica: database: my_primary_database user: root_readonly adapter: mysql replica:...

First of all, thank you for your work on these nifty plugins! I was looking to incorporate ChartJs plugins to add more graph types. Take the example from https://github.com/sgratzl/chartjs-chart-wordcloud ```...

Hi there! I'm using rspec-mocks (3.7.0) with minitest (5.10.3) and whenever I try to use `instance_double` on a Rails model, I have some missing methods, that should exist given the...