summaryrefslogtreecommitdiff
path: root/src/if_ruby.c
AgeCommit message (Collapse)Author
2016-07-24patch 7.4.2101Bram Moolenaar
Problem: Looping over windows, buffers and tab pages is inconsistant. Solution: Use FOR_ALL_ macros everywhere. (Yegappan Lakshmanan)
2016-06-13patch 7.4.1929Bram Moolenaar
Problem: Inconsistent indenting and weird name. Solution: Fix indent, make name all upper case. (Ken Takata)
2016-06-11patch 7.4.1922Bram Moolenaar
Problem: Ruby 2.4.0 unifies Fixnum and Bignum into Integer. Solution: Use rb_cInteger. (Weiong Mao)
2016-06-01patch 7.4.1863Bram Moolenaar
Problem: Compiler warnings on Win64. Solution: Adjust types, add type casts. (Ken Takata)
2016-03-30patch 7.4.1689Bram Moolenaar
Problem: Ruby interface has inconsistent coding style. Solution: Fix the coding style. (Ken Takata)
2016-03-19patch 7.4.1611Bram Moolenaar
Problem: The versplit feature makes the code uneccessary complicated. Solution: Remove FEAT_VERTSPLIT, always support vertical splits when FEAT_WINDOWS is defined.
2016-02-16patch 7.4.1334Bram Moolenaar
Problem: Many compiler warnings with MingW. Solution: Add type casts. (Yasuhiro Matsumoto)
2016-01-30patch 7.4.1208Bram Moolenaar
Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
2016-01-23patch 7.4.1154Bram Moolenaar
Problem: No support for JSON. Solution: Add jsonencode() and jsondecode(). Also add v:false, v:true, v:null and v:none.
2016-01-19patch 7.4.1133Bram Moolenaar
Problem: Generated function prototypes still have __ARGS(). Solution: Generate function prototypes without __ARGS().
2016-01-09patch 7.4.1065Bram Moolenaar
Problem: Cannot use the "dll" options on MS-Windows. Solution: Support the options on all platforms. Use the built-in name as the default, so that it's clear what Vim is looking for.
2015-12-28patch 7.4.987Bram Moolenaar
Problem: Can't build with Ruby 1.9.2. Solution: Require Rub 2.0 for defining USE_TYPEDDATA.
2015-12-28patch 7.4.985Bram Moolenaar
Problem: Can't build with Ruby 2.3.0. Solution: Use the new TypedData_XXX macro family instead of Data_XXX. Use TypedData. (Ken Takata)
2015-11-19patch 7.4.927Bram Moolenaar
Problem: Ruby crashes when there is a runtime error. Solution: Use ruby_options() instead of ruby_process_options(). (Damien)
2015-11-02patch 7.4.907Bram Moolenaar
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)
2015-04-21patch 7.4.705Bram Moolenaar
Problem: Can't build with Ruby 2.2. Solution: Add #ifdefs to handle the incompatible change. (Andrei Olsen)
2015-01-14updated for version 7.4.570Bram Moolenaar
Problem: Building with dynamic library does not work for Ruby 2.2.0 Solution: Change #ifdefs and #defines. (Ken Takata)
2014-11-27updated for version 7.4.534Bram Moolenaar
Problem: Warnings when compiling if_ruby.c. Solution: Avoid the warnings. (Ken Takata)
2014-11-12updated for version 7.4.511Bram Moolenaar
Problem: Generating proto for if_ruby.c uses type not defined elsewhere. Solution: Do not generate a prototype for rb_gc_writebarrier_unprotect_promoted()
2014-03-28updated for version 7.4.227Bram Moolenaar
Problem: Can't build with Ruby 1.8. Solution: Do include a check for the Ruby version. (Ken Takata)
2014-03-27updated for version 7.4.225Bram Moolenaar
Problem: Dynamic Ruby doesn't work on Solaris. Solution: Always use the stubs. (Danek Duvall, Yukihiro Nakadaira)
2014-02-23updated for version 7.4.188Bram Moolenaar
Problem: SIZEOF_LONG clashes with similar defines in header files. Solution: Rename to a name starting with VIM_. Also for SIZEOF_INT.
2014-02-05updated for version 7.4.168Bram Moolenaar
Problem: Can't compile with Ruby 2.1.0. Solution: Add support for new GC. (Kohei Suzuki)
2013-05-20updated for version 7.3.974Bram Moolenaar
Problem: Can't build with ruby 1.8.5. Solution: Only use ruby_init_stack() when RUBY_INIT_STACK is defined. (Yukihiro Nakadaira)
2013-05-12updated for version 7.3.936Bram Moolenaar
Problem: Ruby 1.8: Missing piece for static linking on 64 bit systems. Solution: Define ruby_init_stack() (Hiroshi Shirosaki) Also fix preprocessor indents.
2013-05-11updated for version 7.3.935Bram Moolenaar
Problem: Init stack works differently on 64 bit systems. Solution: Handle 64 bit systems and also static library. (Yukihiro Nakadaira)
2013-05-11updated for version 7.3.933Bram Moolenaar
Problem: Ruby on Mac crashes due to GC failure. Solution: Init the stack from main(). (Hiroshi Shirosaki)
2013-05-06updated for version 7.3.925Bram Moolenaar
Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
2013-04-14updated for version 7.3.889Bram Moolenaar
Problem: Can't build with Ruby 2.0 on a 64 bit system. Solution: Define rb_fix2int and rb_num2int. (Kohei Suzuki)
2013-03-07updated for version 7.3.848Bram Moolenaar
Problem: Can't build with Ruby 2.0 when using MinGW x64 or MSVC10. Solution: Fix it. Also detect RUBY_PLATFORM and RUBY_INSTALL_NAME for x64. (Ken Takata)
2013-02-26updated for version 7.3.834Bram Moolenaar
Problem: Ruby 2.0 has a few API changes. Solution: Add handling of Ruby 2.0. (Yasuhiro Matsumoto)
2013-02-14updated for version 7.3.820Bram Moolenaar
Problem: Build errors and warnings when building with small features and Lua, Perl or Ruby. Solution: Add #ifdefs and UNUSED.
2012-11-24updated for version 7.3.729Bram Moolenaar
Problem: Building with Ruby fails on some systems. Solution: Remove "static" and add #ifndef PROTO. (Ken Takata)
2012-11-20updated for version 7.3.721Bram Moolenaar
Problem: Ruby interface defines local functions globally. Solution: Make the functions static.
2012-10-03updated for version 7.3.676Bram Moolenaar
Problem: Ruby compilation on Windows 32 bit doesn't work. Solution: Only use some functions for 64 bit. (Ken Takata)
2012-09-18updated for version 7.3.662Bram Moolenaar
Problem: Can't build Ruby interface with Ruby 1.9.3. Solution: Add missing functions. (V. Ondruch)
2012-04-25updated for version 7.3.503Bram Moolenaar
Problem: Warning for unused argument. Solution: Add UNUSED.
2012-04-20updated for version 7.3.501Bram Moolenaar
Problem: Error for "flush" not being defined when using Ruby command. Solution: Defined "flush" as a no-op method. (Kent Sibilev)
2011-08-04updated for version 7.3.267Bram Moolenaar
Problem: Ruby on Mac OS X 10.7 may crash. Solution: Avoid alloc(0). (Bjorn Winckler)
2011-01-17updated for version 7.3.101Bram Moolenaar
Problem: ino_t defined with wrong size. Solution: Move including auto/config.h before other includes. (Marius Geminas)
2010-12-24updated for version 7.3.088Bram Moolenaar
Problem: Ruby can't load Gems sometimes, may cause a crash. Solution: Undefine off_t. Use ruby_process_options(). (Yasuhiro Matsumoto)
2010-12-08updated for version 7.3.076Bram Moolenaar
Problem: Clang warnings for dead code. Solution: Remove it. (Carlo Teubner)
2010-11-24updated for version 7.3.067Bram Moolenaar
Problem: Ruby: Init_prelude is not always available. Solution: Remove use of Init_prelude. (Yasuhiro Matsumoto)
2010-11-16updated for version 7.3.058Bram Moolenaar
Problem: Error "code converter not found" when loading Ruby script. Solution: Load Gem module. (Yasuhiro Matsumoto)
2010-10-27updated for version 7.3.046Bram Moolenaar
Problem: Can't build Ruby on MS-Windows. Solution: Add #ifdef, don't use WIN3264 before including vim.h.
2010-10-27updated for version 7.3.043Bram Moolenaar
Problem: Can't load Ruby dynamically on Unix. Solution: Adjust the configure script. (James Vega)
2010-10-23updated for version 7.3.034Bram Moolenaar
Problem: Win32: may be loading .dll from the wrong directory. Solution: Go to the Vim executable directory when opening a library.
2010-09-29updated for version 7.3.013Bram Moolenaar
Problem: Dynamic loading with Ruby doesn't work for 1.9.2. Solution: Handle rb_str2cstr differently. Also support dynamic loading on Unix. (Jon Maken)
2010-07-02Make updating text for conceal mode simpler. A few compiler warning fixes.Bram Moolenaar
2010-06-25Fix build problem with Ruby on Windows. (Cesar Romani)Bram Moolenaar