Sha256: 26422c2b5c66bdb705342b0366af569ebe6a72c24607ad2e332119b8eb402f43
Contents?: true
Size: 461 Bytes
Versions: 6982
Compression:
Stored size: 461 Bytes
Contents
# frozen_string_literal: true module Rake module InvocationExceptionMixin # Return the invocation chain (list of Rake tasks) that were in # effect when this exception was detected by rake. May be null if # no tasks were active. def chain @rake_invocation_chain ||= nil end # Set the invocation chain in effect when this exception was # detected. def chain=(value) @rake_invocation_chain = value end end end
Version data entries
6,982 entries across 6,870 versions & 99 rubygems