Skip to content

Instantly share code, notes, and snippets.

@biot023
Created July 11, 2010 20:45
Show Gist options
  • Save biot023/471817 to your computer and use it in GitHub Desktop.
Save biot023/471817 to your computer and use it in GitHub Desktop.
module CellControllerHelpers
def assign_to_cell( key, value )
@opts ||= {}
@opts[key] = value
@cell.instance_variable_set( :@opts, @opts )
end
def assigned_to_cell( key )
@cell.instance_variable_get( "@#{ key.to_s }" )
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment