2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2011-10-29 20:09:14 +01:00
|
|
|
class AutoBuildList < ActiveRecord::Base
|
|
|
|
belongs_to :project
|
|
|
|
belongs_to :arch
|
|
|
|
belongs_to :pl, :class_name => 'Platform'
|
|
|
|
belongs_to :bpl, :class_name => 'Platform'
|
2011-11-02 19:18:25 +00:00
|
|
|
|
|
|
|
def event_log_message
|
2011-11-28 15:41:42 +00:00
|
|
|
{:project => project.name}.inspect
|
2011-11-02 19:18:25 +00:00
|
|
|
end
|
2011-10-29 20:09:14 +01:00
|
|
|
end
|