Luis
Luis
We added a COC file in https://github.com/rubymem/ruby-mem-advisory-db/pull/19 but we should add it to the README too
Update Readme file so people know that it's possible to pass a custom IVA to the LineItem. See https://github.com/ombulabs/afip_bill/pull/14#issuecomment-536565669
See https://github.com/ombulabs/afip_bill/pull/16#discussion_r329805404
https://ombulabs.atlassian.net/browse/DT-266 Add label to stories so we can properly filter and order them
The rails upgraded already does this kind of "mirgation" with strong params, it would be nice If we can add this other "migration" for going from `Rails 4.2` Rails `5-0`...
`rails g model User name:string` will generate migration as shown below. ```ruby class CreateUsers < ActiveRecord::Migration def change create_table :users do |t| t.string :name t.timestamps null: false end end end...
After `Rails 5.1` All *_filter methods are now called *_action: These methods were actually already deprecated in Rails 5.0, and Rails 5.1 removes support for *_filter usage, so you should...