Sha256: 46bb99b2c00e0d9ad6cd1a5b2216a5d84d85db5de28996b4fb05e306aecdc169
Contents?: true
Size: 484 Bytes
Versions: 44
Compression:
Stored size: 484 Bytes
Contents
# Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com # All files in this distribution are subject to the terms of the Ruby license. module Ramaze module CoreExtensions # Extensions for Object module Object # Available in 1.8.6 and later. unless ::Object.method_defined?(:instance_variable_defined?) def instance_variable_defined?(variable) instance_variables.include?(variable.to_s) end end end end end
Version data entries
44 entries across 44 versions & 5 rubygems