Skip to content

Instantly share code, notes, and snippets.

View pyrareae's full-sized avatar

pyrareae

  • Washington State, USA
View GitHub Profile
@pyrareae
pyrareae / json_store.rb
Last active June 6, 2020 23:29
Simple sequel json store mixin
# Yes, monkey patching, you can easily do it without too.
class OpenStruct
##
# Deep convert to hash
def deep_to_h
each_pair.map do |key, value|
[
key,
case value
when OpenStruct