roberts1000

Results 8 comments of roberts1000

Some additional details: A relative path and no extension works! It finds the `bootstrap_variables.scss.erb` and processes the ERB inside of it: ```sass @import 'my_gem/bootstrap_variables'; ``` Extensions lets the file be...

Thanks for the feedback. Is this the command that ran when you noticed the trouble? > DISABLE_DATABASE_ENVIRONMENT_CHECK=1 RAILS_ENV=test bundle exec rake db:drop db:create db:migrate && bundle exec rspec --order rand...

@tagCincy Do you recall why `DISABLE_DATABASE_ENVIRONMENT_CHECK=1` caused problems in your case? The gem is built around the idea that the `test` database can be dropped and reset between runs. Since...

Hi. I'm glad you're finding the gem helpful! We can definitely look into adding support for parallel specs. You may be able to use them today if you pass an...

One more piece of the puzzle. It turns out bundler, prior to version 1.4, doesn't recognize 64 bit gems on Windows https://github.com/bundler/bundler/issues/2658 which causes the problems noted above. A full...

I'm going to close this since it's been open for a while without anyone taking action. It should be possible to run parallel specs today using the `-c` option to...

Here's the current state: 1. Based on the above feedback, I merged PR #118 which makes rspec_n use `db:schema:load` to prepare the database (instead of `db:migrate`) and released v2.0.0. 2....