Sha256: ffdec3ec87320f603714b58ba75e96707db4cbbfe7a7f317db67ccb05f267c61
Contents?: true
Size: 206 Bytes
Versions: 8
Compression:
Stored size: 206 Bytes
Contents
class Module # return hash instead of names # @see constants # # @return [Hash] {key: value} def consts constants.each.with_object ({}) do |k,m| m[k] = const_get(k) end end end #class Module
Version data entries
8 entries across 8 versions & 1 rubygems