Module: FiverunsTuneupMerb
- Extended by:
- APIKey
- Defined in:
- lib/fiveruns_tuneup_merb.rb,
lib/fiveruns_tuneup_merb/api_key.rb,
lib/fiveruns_tuneup_merb/instrumentation.rb
Overview
All Slice code is expected to be namespaced inside a module
Defined Under Namespace
Modules: APIKey, Instrumentation Classes: Application, Runs
Class Method Summary collapse
-
.activate ⇒ Object
Activation hook - runs after AfterAppLoads BootLoader.
- .copy_assets! ⇒ Object
-
.deactivate ⇒ Object
Deactivation hook - triggered by Merb::Slices.deactivate(FiverunsTuneupMerb).
-
.init ⇒ Object
Initialization hook - runs before AfterAppLoads BootLoader.
-
.loaded ⇒ Object
Stub classes loaded hook - runs before LoadClasses BootLoader right after a slice’s classes have been loaded internally.
-
.setup_router(scope) ⇒ Object
Setup routes inside the host application.
Methods included from APIKey
Class Method Details
.activate ⇒ Object
Activation hook - runs after AfterAppLoads BootLoader
70 71 |
# File 'lib/fiveruns_tuneup_merb.rb', line 70 def self.activate end |
.copy_assets! ⇒ Object
93 94 95 96 97 |
# File 'lib/fiveruns_tuneup_merb.rb', line 93 def self.copy_assets! Merb.logger.info "Automatically copying assets for FiveRuns TuneUp" copied, preserved = mirror_public! preserved.each { |f| Merb.logger.warn "! preserved override as #{f}" } end |
.deactivate ⇒ Object
Deactivation hook - triggered by Merb::Slices.deactivate(FiverunsTuneupMerb)
74 75 |
# File 'lib/fiveruns_tuneup_merb.rb', line 74 def self.deactivate end |
.init ⇒ Object
Initialization hook - runs before AfterAppLoads BootLoader
54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/fiveruns_tuneup_merb.rb', line 54 def self.init if Merb::Config[:adapter] != 'irb' Merb.logger.info "Instrumenting with FiveRuns TuneUp" ::Merb::Request.extend(FiverunsTuneupMerb::Instrumentation::Merb::Request) ::Merb::Controller.extend(FiverunsTuneupMerb::Instrumentation::Merb::Controller) if defined?(::DataMapper) ::DataMapper::Repository.extend(FiverunsTuneupMerb::Instrumentation::DataMapper::Repository) end log_share_status copy_assets! else Merb.logger.info "Not instrumenting with FiveRuns TuneUp (adapter is '#{Merb::Config[:adapter]}')" end end |
.loaded ⇒ Object
Stub classes loaded hook - runs before LoadClasses BootLoader right after a slice’s classes have been loaded internally.
40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/fiveruns_tuneup_merb.rb', line 40 def self.loaded Fiveruns::Tuneup::Run.directory = config[:run_directory] Fiveruns::Tuneup::Run.api_key = config[:api_key] Fiveruns::Tuneup::Run.environment.update( :application_name => config[:application_name], :framework => 'merb', :framework_version => Merb::VERSION.to_s, :framework_env => Merb.env.to_s ) Fiveruns::Tuneup.javascripts_path = FiverunsTuneupMerb.public_dir_for('javascripts') Fiveruns::Tuneup.stylesheets_path = FiverunsTuneupMerb.public_dir_for('stylesheets') end |
.setup_router(scope) ⇒ Object
prefix your named routes with :fiveruns_tuneup_merb_ to avoid potential conflicts with global named routes.
Setup routes inside the host application
86 87 88 89 90 91 |
# File 'lib/fiveruns_tuneup_merb.rb', line 86 def self.setup_router(scope) if Fiveruns::Tuneup::Run.api_key? # example of a named route scope.match(%r{/share/(.+)}).to(:controller => 'runs', :action => 'share', :slug => '[1]').name(:fiveruns_tuneup_merb_share_run) end end |