Module: Jamm::Deprecation

Defined in:
lib/jamm/deprecation.rb

Class Method Summary collapse

Class Method Details

.warn(method) ⇒ Object



5
6
7
8
9
10
11
# File 'lib/jamm/deprecation.rb', line 5

def self.warn(method)
  puts [
    'DEPRECATION WARNING:',
    "#{method} is going to deprecate.",
    'Please check our migration guide https://github.com/jamm-pay/ruby-sdk/wiki'
  ].join(' ')
end