method
instance_variable_defined?
instance_variable_defined?(variable)
public
Hide source
# File activesupport/lib/active_support/core_ext/object/instance_variables.rb, line 4 def instance_variable_defined?(variable) instance_variables.include?(variable.to_s) end