Nujian Den Mark Meralpis

Results 5 issues of Nujian Den Mark Meralpis

Hi, I dunno if this is a valid bug but here's how I experienced it: ### Models ```ruby # product.rb belongs_to :another_model has_many :product_categories has_many :categories, through: :product_categories # product_category.rb...

How can I infer a namespaced decorator? I got an error(which is expected) everytime I decorate `Document` model. `2.5.3 :010 > Document.first.decorate.created_at` ```bash Draper::UninferrableDecoratorError (Could not infer a decorator for...

```ruby # foo.rb class Foo < ApplicationRecord enum day: [:sunday, :monday, :tuesday, :wednesday, :thursday, :friday, :saturday] validates :start_time, :end_time, overlap: { scope: [:day, :another_column] } end ``` Here's what I...