ianheggie/cruisecontrol.rb

View on GitHub
app/models/changeset_entry.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ChangesetEntry < Struct.new(:operation, :file)
  def to_s
    "  #{operation} #{file}"
  end
end