CoderMiguel

Results 5 comments of CoderMiguel

Running into a similar issue when adding the Facets gem to an existing project. When just adding the gem: ```console WARN: NoMethodError: private method `redefine_method' called for # singleton_class.redefine_method(method, &block)...

I was able to add a task that solved this for me: `lib/tasks.routes.rake` ```ruby task :routes do puts `bin/rails routes` end ``` This injects the `rails routes` behavior into the...

> f.inputs "User Details" do > f.input :name > f.input :description > f.input :slug > f.input :available_on, as: :datepicker ,datepicker_options:datepicker_options > > f.fields_for :variant do |variants_form| > variants_form.input :price >...

I started a fork to work on this last night and realized the extent of this issue is pretty deep. There were a lot of changes in the upgrade to...

@sds this should be rebased now, I will revisit soon to look into the test failures and remove the version checking code I added for testing some things out.