Specify proper dependencies in job's and build's properties

This commit is contained in:
Piotr Sarnacki 2014-06-26 18:01:34 +02:00
parent 3d45696f9a
commit 412baaa79c
2 changed files with 4 additions and 4 deletions

View File

@ -43,11 +43,11 @@ require 'travis/model'
startedAt: (->
unless @get('notStarted')
@get('_startedAt')
).property('_startedAt')
).property('_startedAt', 'notStarted')
finishedAt: (->
unless @get('notStarted')
@get('_finishedAt')
@get('_finishedAt', 'notStarted')
).property('_finishedAt')
requiredJobs: (->

View File

@ -30,12 +30,12 @@ require 'travis/model'
startedAt: (->
unless @get('notStarted')
@get('_startedAt')
).property('_startedAt')
).property('_startedAt', 'notStarted')
finishedAt: (->
unless @get('notStarted')
@get('_finishedAt')
).property('_finishedAt')
).property('_finishedAt', 'notStarted')
repoSlug: (->
@get('repositorySlug')