Sha256: 47f6f2f5fe2c81baf307c7148700b2e7c2037192a93ffc0671ea6ecfd34dc284
Contents?: true
Size: 630 Bytes
Versions: 19
Compression:
Stored size: 630 Bytes
Contents
# encoding: UTF-8 # # Copyright (c) 2010-2017 GoodData Corporation. All rights reserved. # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. class Object class << self def set_const(name, val) send(:remove_const, name) if const_defined?(name) send(:const_set, name, val) end end def blank? respond_to?(:empty?) ? empty? : !self end def duplicable? true end def set_const(name, val) send(:remove_const, name) if const_defined?(name) send(:const_set, name, val) end def to_b false end end
Version data entries
19 entries across 19 versions & 1 rubygems