class AppInsights::CubaInstaller

Public Class Methods

init(root, filename = nil) click to toggle source
# 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_message() click to toggle source
# 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