class Omnibus::ProjectAlreadyDirty
Public Class Methods
new(project)
click to toggle source
Calls superclass method
# File lib/omnibus/exceptions.rb, line 305 def initialize(project) name = project.name culprit = project.culprit.name super <<~EOH The project `#{name}' was already marked as dirty by `#{culprit}'. You cannot mark a project as dirty twice. This is probably a bug in Omnibus and should be reported. EOH end