Method: CF::Station#to_s
- Defined in:
- lib/cf/station.rb
#to_s ⇒ Object
:nodoc:
321 322 323 324 325 326 327 |
# File 'lib/cf/station.rb', line 321 def to_s # :nodoc: if self.type == "TournamentStation" "{:type => #{self.type}, :index => #{self.index}, :line_title => #{self.line_title}, :station_input_formats => #{self.station_input_formats}, :jury_worker => #{self.jury_worker}, auto_judge => #{self.auto_judge}, :errors => #{self.errors}}" else "{:type => #{self.type}, :index => #{self.index}, :line_title => #{self.line_title}, :station_input_formats => #{self.station_input_formats}, :errors => #{self.errors}}" end end |