Class: Appsignal::Hooks::RakeHook Private

Inherits:
Hook show all
Defined in:
lib/appsignal/hooks/rake.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Method Summary collapse

Methods inherited from Hook

#initialize, #installed?, register, #try_to_install

Constructor Details

This class inherits a constructor from Appsignal::Hooks::Hook

Instance Method Details

#dependencies_present?Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (Boolean)


9
10
11
# File 'lib/appsignal/hooks/rake.rb', line 9

def dependencies_present?
  defined?(::Rake::Task)
end

#installObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/appsignal/hooks/rake.rb', line 13

def install
  ::Rake::Task.class_eval do
    alias :execute_without_appsignal :execute

    def execute(*args)
      execute_without_appsignal(*args)
    rescue Exception => error # rubocop:disable Lint/RescueException
      # Format given arguments and cast to hash if possible
      params, _ = args
      params = params.to_hash if params.respond_to?(:to_hash)

      transaction = Appsignal::Transaction.create(
        SecureRandom.uuid,
        Appsignal::Transaction::BACKGROUND_JOB,
        Appsignal::Transaction::GenericRequest.new(
          :params => params
        )
      )
      transaction.set_action(name)
      transaction.set_error(error)
      transaction.complete
      Appsignal.stop("rake")
      raise error
    end
  end
end