Skip to content

Instantly share code, notes, and snippets.

@dakatsuka
Created November 21, 2010 13:39
Show Gist options
  • Save dakatsuka/708743 to your computer and use it in GitHub Desktop.
Save dakatsuka/708743 to your computer and use it in GitHub Desktop.
Rails2のSessionと共存するためのモンキーパッチ
module ActionController
module Flash
class FlasHash < Hash
def method_missing(m, *a, &b)
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment