Ivan Stana
Ivan Stana
I noticed the same issue. I can take a look on this one.
@shai32 I just used 'joi-browser' and it works nicely
I'd say the model should be named only `a.rb` instead of `class_a.rb`. Do you experience the same result when you run `RAILS_ENV=test bundle exec rspec spec/feature/mytest.rb`?
`rspec` itself or `rake` are not aware of `spring` so this behavior is expected. `bin/rspec` contains a piece of code which loads `spring`. This means you should always call `bin/rspec`.
you're right, but `bin/rspec` will use `spring` only if it's added to binstub. I still don't see a reason why `rspec` command should load binstub instead of the executable from...
I bumped into the same exception, changing uglifier configuration helped (in `config/environment/production.rb`): ```ruby config.assets.js_compressor = :uglifier ``` with ```ruby config.assets.js_compressor = Uglifier.new(harmony: true) ```
I don't have any other pointers. But I can share versions which work - rails (6.1.4.1), sprockets-rails (3.2.2), sprockets (4.0.2), uglifier (4.2.0) and config (sorry, coffeescript) ``` tinymceConfig = selector:...
Hi, the gem has not been released to rubygems for years, I'd recommend to try to use master branch like: `gem 'rails-perftest', github: 'rails/rails-perftest'` and that might solve your problems.