Skip to content

Instantly share code, notes, and snippets.

@marzdgzmn
Created December 14, 2018 07:36
Show Gist options
  • Save marzdgzmn/da15a290e3ae436e69d18adf5f9bffd6 to your computer and use it in GitHub Desktop.
Save marzdgzmn/da15a290e3ae436e69d18adf5f9bffd6 to your computer and use it in GitHub Desktop.
module Foo
@@db = Configuration.database
def update
@@db.do_something
end
def delete
@@db.do_something
end
end
class Bar
include Foo
def process
update
delete
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment