Sha256: c88d81d13b971e1d82ba5f53adc48f5c810239ca3b0aeb1402e481f57b775e01

Contents?: true

Size: 170 Bytes

Versions: 2

Compression:

Stored size: 170 Bytes

Contents

module TasklibPatch
  attr_accessor :task_failed
  
  def initialize
    super()
    @task_failed = false
  end
  
  def fail
    @task_failed = true
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
albacore-0.1.1 spec/patches/tasklib_patch.rb
albacore-0.1.0 spec/patches/tasklib_patch.rb