RailsCasts Pro episodes are now free!

Learn more or hide this

Michael Pope's Profile

GitHub User: map7

Comments by Michael Pope

Avatar

I've got everything working except parallel in guard. I have zeus running parallel and zeus working within guard, I've added the parallel: true to my guardfile.

Would this be an issue with guard, guard-rspec or parallel_tests? What versions of these gems should I be running?

Avatar

Great railscast.

I had problems getting zeus and guard working nicely together until I found that I had to upgrade guard-rspec to 2.1.0 or greater

ruby
gem 'guard-rspec', "~> 2.1.0"
Avatar

Great tutorial as always. I did run into a problem though when trying to implement it into my app. When I add an extra field it didn't show up in the params sent to the controller.

I found the problem was I had put the form into a table and it didn't work well with this. I simply removed the table and it all started to work.