diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-11-02 15:28:18 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-11-02 15:28:18 +0100 |
commit | d94464ee294a351ce7b6ba18e8bd3f24f1bef920 (patch) | |
tree | 8c3e98bb5e0f82995a6ee8e7a0729a9ec788265c /runtime/doc/if_ruby.txt | |
parent | 8a52ba791893fd55c5bdf98825c5b3e8892eaa62 (diff) | |
download | vim-git-d94464ee294a351ce7b6ba18e8bd3f24f1bef920.tar.gz |
patch 7.4.907v7.4.907
Problem: Libraries for dynamically loading interfaces can only be defined
at compile time.
Solution: Add options to specify the dll names. (Kazuki Sakamoto,
closes #452)
Diffstat (limited to 'runtime/doc/if_ruby.txt')
-rw-r--r-- | runtime/doc/if_ruby.txt | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/runtime/doc/if_ruby.txt b/runtime/doc/if_ruby.txt index 4084181f9..0d41d8fb2 100644 --- a/runtime/doc/if_ruby.txt +++ b/runtime/doc/if_ruby.txt @@ -1,4 +1,4 @@ -*if_ruby.txt* For Vim version 7.4. Last change: 2015 Feb 22 +*if_ruby.txt* For Vim version 7.4. Last change: 2015 Oct 16 VIM REFERENCE MANUAL by Shugo Maeda @@ -199,6 +199,8 @@ This means that Vim will search for the Ruby DLL file or shared library only when needed. When you don't use the Ruby interface you don't need it, thus you can use Vim even though this library file is not on your system. +MS-Windows ~ + You need to install the right version of Ruby for this to work. You can find the package to download from: http://www.garbagecollect.jp/ruby/mswin32/en/download/release.html @@ -216,5 +218,12 @@ and comment-out the check for _MSC_VER. You may also need to rename the include directory name to match the version, strangely for Ruby 1.9.3 the directory is called 1.9.1. +Unix ~ + +The 'rubydll' option can be used to specify the Ruby shared library file +instead of DYNAMIC_RUBY_DLL file what was specified at compile time. The +version of the shared library must match the Ruby version Vim was compiled +with. + ============================================================================== vim:tw=78:ts=8:ft=help:norl: |