module Trellohub::Mocking::Request
Public Class Methods
included(base)
click to toggle source
# File lib/trellohub/mocking.rb, line 61 def self.included(base) Trellohub::Mocking.request_methods.each do |m| base.class_eval do alias_method m.to_sym, :"#{m}_with_http" if method_defined? :"#{m}_with_http" end end end