mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-23 06:16:50 +00:00
12 lines
241 B
Ruby
12 lines
241 B
Ruby
module ActiveModel
|
|
module Serializable
|
|
module Utils
|
|
extend self
|
|
|
|
def _const_get(const)
|
|
method = RUBY_VERSION >= '2.0' ? :const_get : :qualified_const_get
|
|
Object.send method, const
|
|
end
|
|
end
|
|
end
|
|
end |