Skip to content

Instantly share code, notes, and snippets.

@matthewrudy
Created June 25, 2019 15:27
Show Gist options
  • Save matthewrudy/f6c32fdefc15547f104a0bfd8275a55c to your computer and use it in GitHub Desktop.
Save matthewrudy/f6c32fdefc15547f104a0bfd8275a55c to your computer and use it in GitHub Desktop.
module Refillable
extend ActiveSupport::Concern
include do
attr_reader :store
end
def refill!
@store = 100
end
def needs_refill?
store.nil? || store < 5
end
module ClassMethods
def overstretched
"this example"
end
private
def something
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment