RailsCasts Pro episodes are now free!

Learn more or hide this

Max Gonzih's Profile

GitHub User: Gonzih

Site: gonzih.github.com

Comments by Max Gonzih

Avatar

Btw I'm using rails 3.2.1 and ruby 1.9.3

Avatar

Sorry, my mistake. Actually request is aborted.

https://dl.dropbox.com/u/4109351/tmp/rack-mini-profiler-firebug-1.png

Should I post issue to community tracker?

Also thanks for awesome gem :D

Avatar

Thanks for tutorial, just installed gem and nothing happened. FireBug console shows that every request POST http://0.0.0.0:3000/mini-profiler-resources/results is failed without any additional information =/

Avatar

After using --binstubs you can add ./bin directory to shell PATH variable.

Avatar

Can i configure different delay time between jobs calls for different queues?

Avatar

For running active_admin on Heroku add that line to your config/environments/production.rb.

ruby
config.assets.precompile += ['active_admin.js', 'active_admin.css']

And after that run rake assets:precompile, add public/assets to git, push to heroku and enjoy.

Also check that option in production.rb (should be false for heroku).

ruby
config.assets.compile = false
Avatar

Can i use vcr with capybara + selenium?

Awesome episode. I add capybara-mechanize for OAuth testing in my app.