Really useful software project management and source code hosting.    tell me more...
BROWSE: projects / users / groups
Public clone: git://codaset.com/ffmike/bigoldrailstemplate.git
star_disabled Dashboard Source Tickets Wiki Blog Network


Really Useful Social coding!

Codaset is an open system, so you can browse and search through all the open source projects, and check out what your friends are coding. Follow them, befriend them, and fork their code; quickly and easily.
Every single open source project you create is free, so come on and use Codaset at no cost. Your first private or semi-private project is also free. Read more about what it costs after that.

Remove obsolete Scout plugin

comment0 comments   

by Mike Gunderloy
7 months ago
commit:43aec0292048d8356e1645829c1b2ee99d7ebc66
tree:be2b21f73f900739e367532c841610fc83efb19a
parent:f3d4acf881378be397409b0f6b775503a58f1c43
5454
   :options:
5555
     :git: :git://github.com/newrelic/rpm.git
5656
   :if: monitoring == "new_relic"
57
-scout_rails_instrumentation:
58
-  :options:
59
-    :git: :git://github.com/highgroove/scout_rails_instrumentation.git
60
-  :if: monitoring == "scout"
6157
 
6258
 # Optional exception handling
6359
 exceptional:

55
 #{'- Set up new app at http://www.hoptoadapp.com/' if exception_handling == 'hoptoad'}
66
 #{'- Put the right API key in config/initializers/hoptoad.rb' if exception_handling == 'hoptoad'}
77
 #{'- Put the right API key in config/new_relic.yml' if monitoring == 'new_relic'}
8
-#{'- Put the right plugin ID in config/scout.yml' if monitoring == 'scout'}
9
-#{'- Install the scout agent gem on the production server (sudo gem install scout_agent)' if monitoring == 'scout'}
8
+#{'- Install the scout gem (sudo gem install scout) and the request-log-analyzer gem (sudo gem install request-log-analyzer) on the production server.' if monitoring == 'scout'}
109
 - Create public/favicon.ico
1110
 - Put the production database password in config/database.yml
1211
 - Put mail server information in mail.rb

233233
   file 'config/newrelic.yml', load_pattern('config/newrelic.yml', 'default', binding)
234234
 end
235235
 
236
-if monitoring == "scout"
237
-  file 'config/scout.yml', load_pattern('config/scout.yml', 'default', binding)
238
-end
239
-
240236
 # local monitoring
241237
 generate(:health_monitor)
242238
 
------
574570
   puts '  Put the right API key in config/new_relic.yml'
575571
 end
576572
 if monitoring == "scout"
577
-  puts '  Put the right plugin ID in config/scout.yml'
578
-  puts '  Install the scout agent gem on the production server (sudo gem install scout_agent)'
573
+  puts '  Install the scout gem (sudo gem install scout) and the request-log-analyzer gem (sudo gem install request-log-analyzer) on the production server.'
579574
 end
580575
 puts '  Create public/favicon.ico'
581576
 puts '  Put the production database password in config/database.yml'