Class: SmsCarrier::Base::NullMessage

Inherits:
Object
  • Object
show all
Defined in:
lib/sms_carrier/base.rb

Overview

:nodoc:

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(*args) ⇒ Object



173
174
175
# File 'lib/sms_carrier/base.rb', line 173

def method_missing(*args)
  nil
end

Instance Method Details

#bodyObject



167
# File 'lib/sms_carrier/base.rb', line 167

def body; '' end

#respond_to?(string, include_all = false) ⇒ Boolean

Returns:

  • (Boolean)


169
170
171
# File 'lib/sms_carrier/base.rb', line 169

def respond_to?(string, include_all=false)
  true
end