Skip to content

Instantly share code, notes, and snippets.

@dallasmarlow
Created June 3, 2013 21:51
Show Gist options
  • Save dallasmarlow/5701763 to your computer and use it in GitHub Desktop.
Save dallasmarlow/5701763 to your computer and use it in GitHub Desktop.
class instance state hash
def instance_state_hash
self.instance_variables.map do |instance_variable|
self.instance_variable_get instance_variable.to_s.sub ':', '@'
end.hash
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment