Rodrigo R Aquino

Results 8 comments of Rodrigo R Aquino

My models are: ``` class Product belongs_to :category end class Category has_many :product end ``` I'd like to sort products by category name, since my products page has the columns...

I'm also using the latest version of this plugin, and it takes around 10 seconds to open the camera. It is related to this exception which is thrown when the...

Hey @cymen, yep, this error ocurrs when try to deploy to heroku. Same error with `js` extension

Yep @cymen. My heroku buildpacks are setup (nodejs before ruby). Yes, I get this error both in Heroku and when running `RAILS_ENV=production bundle exec rake assets:precompile` locally. Have no idea...

Thanks @cymen Yes, with the `js_compressor` line commented, it works, but the files won't be minified. Will try the `.es6` extension

Hey, this is related to recent babel changes. Better explained here: http://stackoverflow.com/questions/35178096/how-to-configure-a-rails-app-with-es6-support I had to add `babel-preset-es2015` module to my package.json and changed browserify options: ``` config.browserify_rails.commandline_options = "-t [...

Hey @rloomba, are you using the react-rails gem? If not, change the command lines options to this: ``` config.browserify_rails.commandline_options ="-t [ babelify --presets [ es2015 react ] ]" ```

Hi @muhammadyana I couldn't reproduce this issue. I have an example app which is currently using rails 5.2 and ruby 2.5.0: https://github.com/Rodrigora/devise-verifiable-example