Charlie Tran

Results 7 comments of Charlie Tran

I have the same problem, Rails 3.1 with REE. Any update on this?

For people who go with their own collision detection instead of using windfield (I went with HC), it's helpful to know that the tutorial's values of 100 for velocity and...

this happens to me as well, even when using `spring rspec` and not binstubs

figured it out! these intermittent failures started happening once i enabled `config.threadsafe!` across all environments. i'm guessing this should be disabled with Spring because of its forking model?

@grosser is there a way I can check if Spring is preloading / running within `config/application.rb`, so that I can turn off thread safety only in the case that Spring...

@grosser the `config.threadsafe!` command in Rails 3 breaks Spring because it forces `config.cache_classes` to true. adding this line in my `test.rb` fixed the issue: ``` if defined?(Spring::Commands::RSpec) config.cache_classes = false...

I've used MoSQL with Heroku Postgres, the actual MoSQL process was running on an EC2 instance. Worked great!