Module: BancoBrasilPayments::Base

Defined in:
lib/bb_payments/api/base.rb

Overview

TODO: add generic methods and args verifications

Instance Method Summary collapse

Instance Method Details

#without_http_info_meths(*method_names) ⇒ Object



5
6
7
8
9
# File 'lib/bb_payments/api/base.rb', line 5

def without_http_info_meths(*method_names)
  method_names.compact.each do |method_name|
    define_method(method_name) { |*args, &block| send("#{method_name}_with_http_info", *args, &block)[0] }
  end
end