Class: GirFFI::MethodStubber

Inherits:
Object
  • Object
show all
Defined in:
lib/gir_ffi/method_stubber.rb

Overview

Generates method stubs that will replace themselves with the real method upon being called.

Instance Method Summary collapse

Constructor Details

#initialize(method_info) ⇒ MethodStubber

Returns a new instance of MethodStubber.



7
8
9
# File 'lib/gir_ffi/method_stubber.rb', line 7

def initialize(method_info)
  @info = method_info
end

Instance Method Details

#method_stubObject



11
12
13
14
15
16
17
# File 'lib/gir_ffi/method_stubber.rb', line 11

def method_stub
  <<~STUB
    def #{@info.method? ? "" : "self."}#{@info.safe_name} *args, &block
      setup_and_call "#{@info.name}", args, &block
    end
  STUB
end