Created
November 17, 2010 17:37
-
-
Save flockonus/703704 to your computer and use it in GitHub Desktop.
its a model
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Game::Champ < ActiveRecord::Base | |
belongs_to :user | |
# I want here, to have a has many Game::Item using a table for that. | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Game::Item | |
#include ActiveModel::Validations | |
#attr_acessor :id ... :gold # <--- BOTH these lines will help me get validatiojs workign on | |
extend ActiveModel::Naming # NamedPerson.model_name # NamedPerson.model_name.human | |
=begin | |
class Person | |
include ActiveModel::Serialization | |
attr_accessor :attributes | |
def initialize(attributes) | |
@attributes = attributes | |
end | |
end | |
=end | |
include ActiveModel::Serialization | |
attr_accessor :attributes | |
# # # # # # # # # # # # # # # # # # # Instance Methods | |
def initialize( hash ) | |
@attributes = hash | |
end | |
def id | |
@attributes[:id] | |
end | |
def [](arg) | |
@attributes[arg.to_sym] | |
end | |
# # # # # # # # # # # # # # # # # # # Search | |
def self.find( id ) | |
@@list[id] | |
end | |
@@list = { | |
'item_id' => Game::Item.new({ | |
#:screen_name => 'translation', # provided by translation file | |
#:description => 'translation2' | |
:id => 'item_id', | |
:temp => false, | |
:attr => [['passe', 2], ['finalizacao', 10], ['velocidade', -5] ], | |
:style => ['oculos', 'qq coisa, n sei'], | |
:level => 1, #overall minimo exigido do jogador pra comprar/usar | |
:gold => 500, #quando tem grana, é opcional | |
#:grana => 100 #quando tem gold, é opcional | |
}) | |
} | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment