Skip to content

Instantly share code, notes, and snippets.

@etagwerker
Created July 5, 2016 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save etagwerker/203ea3caf3347e276f65c69368ff3516 to your computer and use it in GitHub Desktop.
Save etagwerker/203ea3caf3347e276f65c69368ff3516 to your computer and use it in GitHub Desktop.
null_seller.rb
# Only the sysadmin will have this type of {Seller}
class NullSeller < Seller
def active?
true
end
def activated?(key)
true
end
def can_add_products?
true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment