Skip to content

Instantly share code, notes, and snippets.

@bilus
Created February 12, 2016 09:04
Show Gist options
  • Save bilus/f1b6f81e475ee2e1d8e1 to your computer and use it in GitHub Desktop.
Save bilus/f1b6f81e475ee2e1d8e1 to your computer and use it in GitHub Desktop.
module Sequel
module OpenStructValues
# Set overrides/defaults for inserting Openstruct
def insert_sql(*values)
p "Should get called"
end
end
Dataset.register_extension(:open_struct_values, OpenStructValues)
end
# ...
dataset = @db[:posts]
dataset.extension(:open_struct_values)
dataset.insert(foo: 'bar') # => Nothing gets printed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment