Created
November 3, 2017 21:11
-
-
Save pdougall1/5655c50c9d03c29e326fab90ea13a7e7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'delegate' | |
module Queries | |
class SomeQuery < SimpleDelegator | |
def initialize | |
super query_hash | |
end | |
private | |
def query_hash | |
{ | |
hash: :stuff_here | |
} | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment