6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# File 'lib/cantango/api_ext/macros/clazz.rb', line 6
def cantango options = {}
type = case options
when Array
options.first
when Symbol
options
when Hash
options[:type]
end
if !type
(name =~ /.+Account$/) ? tango_account(options) : tango_user(options)
else
tango_account(options) and return if type.to_s == 'account'
tango_user(options) and return if type.to_s == 'user'
raise ArgumentError, "Unable to determine type of class to register; Please specify :user or :account as argument"
end
end
|