
- Re-factor - Remove code for notifications - Remove addons - Remove travis-core gem. - Ignore logs directory only - Move core tests to spec/lib
16 lines
224 B
Ruby
16 lines
224 B
Ruby
module Travis
|
|
module Notification
|
|
module Publisher
|
|
class Memory
|
|
def publish(event)
|
|
events << event
|
|
end
|
|
|
|
def events
|
|
@events ||= []
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|