module RubyInstaller::Build
Constants
- BuildOrRuntime
- GEM_VERSION
Public Class Methods
add_dll_directory(path, &block)
click to toggle source
Add path
as a search path for DLLs
This can be used to allow ruby extension files (typically named +<extension>.so+ ) to import dependent DLLs from another directory.
If this method is called with a block, the path is temporary added until the block is finished. The method returns a DllDirectory
instance, when called without a block. It can be used to remove the directory later.
# File lib/ruby_installer/build/singleton.rb, line 11 def add_dll_directory(path, &block) DllDirectory.new(path, &block) end