I had the same problem with Rails 3.0.5 after upgrading from newrelic_rpm 2.13.4 -> 2.14.0
I followed the information here:
http://support.newrelic.com/discussions/support/5547-cant-access-developer-mode
... I added the file $RAILS_ROOT/config.ru to the top of the file
require 'new_relic / rack_app'
use NewRelic :: Rack :: DeveloperMode
I expect this problem to be fixed in a later release of newpreic_rpm
I also noticed a change in the format of the newrelic.yaml file, which should be in the config directory. You can download it from your newrelic home account (account> deploy> ruby) after creating an account (there is a basic free version).
Basically, it looks like this:
common: &default_settings license_key: '[ Your unique license key ]' app_name: My Application
code>
mfrasca
source share