Class: AppInsights::CubaInstaller

Inherits:
Object
  • Object
show all
Defined in:
lib/appinsights/installers/cuba.rb

Class Method Summary collapse

Class Method Details

.init(root, filename = nil) ⇒ Object



5
6
7
8
# File 'lib/appinsights/installers/cuba.rb', line 5

def self.init(root, filename = nil)
  installer = AppInsights::BaseInstaller.new Cuba.app, root, filename
  installer.install
end

.installation_messageObject



10
11
12
13
14
15
16
17
18
19
# File 'lib/appinsights/installers/cuba.rb', line 10

def self.installation_message
  <<-EOS
    Cuba framework does not keep the root path of the application.
    The automatic installation can not continue. Please configure by your own
    using the following code or doing a manual installation:

        AppInsights::CubaInstaller.init application_root_path

  EOS
end