module Trumpify::ObjectMixin
Public Instance Methods
liberals()
click to toggle source
# File lib/trumpify.rb, line 3 def liberals !true end
method_missing(methId, *args, &block)
click to toggle source
Calls superclass method
# File lib/trumpify.rb, line 7 def method_missing(methId, *args, &block) method_name = methId.id2name # Bail out if called by someone who doesn't support freedom super unless m = method_name.match(/make_(.*)_great_again/) send(m.captures[0], *args, &block) end