Sha256: 332be20bb50b04c332fdeba6587ecbff97f99cd2969284b2b531261127ae70cd
Contents?: true
Size: 933 Bytes
Versions: 3
Compression:
Stored size: 933 Bytes
Contents
# coding: utf-8 class Team < ActiveRecord::Base attr_accessible :name, :division_id, :logo_url, :manager, :ballpark, :mascot, :founded, :wins, :losses, :win_percentage, :revenue, :color, :custom_field, :fan_ids, :player_ids, :comment_ids belongs_to :division has_many :players, :inverse_of => :team, :order => :id has_and_belongs_to_many :fans has_many :comments, :as => :commentable validates_numericality_of :division_id, :only_integer => true validates_presence_of :manager validates_numericality_of :founded, :only_integer => true validates_numericality_of :wins, :only_integer => true validates_numericality_of :losses, :only_integer => true validates_numericality_of :win_percentage validates_numericality_of :revenue, :allow_nil => true def player_names_truncated players.map{|p| p.name}.join(", ")[0..32] end def color_enum ['white', 'black', 'red', 'green', 'blu<e>é'] end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rails_admin-0.0.5 | spec/dummy_app/app/active_record/team.rb |
rails_admin-0.0.4 | spec/dummy_app/app/active_record/team.rb |
rails_admin-0.0.3 | spec/dummy_app/app/active_record/team.rb |