Method: Ccrypto::PublicKey#method_missing
- Defined in:
- lib/ccrypto/public_key.rb
#method_missing(mtd, *args, &block) ⇒ Object (private)
19 20 21 22 23 24 25 26 |
# File 'lib/ccrypto/public_key.rb', line 19 def method_missing(mtd, *args, &block) if @native_pubKey.nil? super else logger.debug "Sending to native pubKey '#{@native_pubKey}' of method '#{mtd}'" @native_pubKey.send(mtd, *args, &block) end end |