You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 11, 2019. It is now read-only.
Estou tentando usar o BRDinheiro em uma classe que não extende de ActiveRecord, porém recebo um erro ruby undefined method composed_of' for AccountTransfer:Class`, alguém tem alguma ideia se é possível?
Fiz um gato aqui que resolveu meu problema, se alguém se interessar!
moduleDinheiroActiveModel#:nodoc:defself.included(base)#:nodoc:base.extendClassMethodsendmoduleClassMethods#:nodoc:defusar_como_dinheiro(*args)#:nodoc:unlessargs.size.zero?args.eachdo |name|
name=name.to_smodule_eval<<-ADICIONANDO_METODO validate :#{name}_valido? def #{name}_valido? begin @#{name}.to_s.reais rescue Exception => e self.errors.add('#{name}', e.message) end end def #{name}=(value) if value.nil? @#{name} = nil elsif value.kind_of?(Dinheiro) @#{name} = value.valor_decimal else begin @#{name} = value.reais.valor_decimal rescue @#{name} = value end end end def #{name} @#{name}.reais if @#{name} end ADICIONANDO_METODOendendendendend
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Estou tentando usar o BRDinheiro em uma classe que não extende de ActiveRecord, porém recebo um erro
ruby undefined method
composed_of' for AccountTransfer:Class`, alguém tem alguma ideia se é possível?The text was updated successfully, but these errors were encountered: