lib/new_relic/control/frameworks/ruby.rb in newrelic_rpm-8.2.0 vs lib/new_relic/control/frameworks/ruby.rb in newrelic_rpm-8.3.0

- old
+ new

@@ -7,17 +7,17 @@ module Frameworks # A control used when no framework is detected - the default. class Ruby < NewRelic::Control def env @env ||= ENV['NEW_RELIC_ENV'] || ENV['RUBY_ENV'] || ENV['RAILS_ENV'] || - ENV['APP_ENV'] || ENV['RACK_ENV'] || 'development' + ENV['APP_ENV'] || ENV['RACK_ENV'] || 'development' end def root @root ||= ENV['APP_ROOT'] || '.' end - def init_config(options={}) + def init_config(options = {}) end end end end end