summaryrefslogtreecommitdiff
path: root/include/ruby/ruby.h
AgeCommit message (Expand)Author
2020-08-27include/ruby/backward/2/rmodule.h: deprecate卜部昌平
2020-08-27include/ruby/backward/2/r_cast.h: deprecate卜部昌平
2020-05-11sed -i 's|ruby/impl|ruby/internal|'卜部昌平
2020-05-11sed -i s/RUBY3/RBIMPL/g卜部昌平
2020-05-11sed -i s|ruby/3|ruby/impl|g卜部昌平
2020-04-13add #include guard hack卜部昌平
2020-04-08Merge pull request #2991 from shyouhei/ruby.h卜部昌平
2020-03-21Removed non-RUBY_INTEGER_UNIFICATION codeNobuyoshi Nakada
2020-03-07rb_check_safe_obj no longer exists卜部昌平
2020-02-26kill USE_RGENGC=0卜部昌平
2020-02-20comma at the end of enum is a C++11ism卜部昌平
2020-02-14Consitified `rb_scan_args_set`Nobuyoshi Nakada
2020-02-03Parenthesized macro argumentsNobuyoshi Nakada
2020-02-03Make `rb_scan_args_kw` inline tooNobuyoshi Nakada
2020-02-02Removed no longer used variable `last_hash`Nobuyoshi Nakada
2020-01-28delete RB_METHOD_DEFINITION_DECL_1卜部昌平
2020-01-28delete unreachable branch卜部昌平
2020-01-28template metaprogramming instead of macros卜部昌平
2020-01-28move macros around卜部昌平
2020-01-22Remove special handling of $SAFE and related C-APIsJeremy Evans
2020-01-09Moved the definition of `rb_define_method_if_constexpr`Nobuyoshi Nakada
2020-01-05include/ruby/ruby.h: remove a variable tmp_buffer as it does not changeYusuke Endoh
2020-01-05include/ruby/ruby.h: remove last_idx that is no longer variableYusuke Endoh
2020-01-02Fully separate positional arguments and keyword argumentsJeremy Evans
2019-12-23Reword keyword arguments warning messages to convey these are deprecation war...Marc-Andre Lafortune
2019-12-20vm_args.c: rephrase the warning message of keyword argument separationYusuke Endoh
2019-11-18Warn on access/modify of $SAFE, and remove effects of modifying $SAFEJeremy Evans
2019-10-23Limit strict RUBY_METHOD_FUNC in C++Nobuyoshi Nakada
2019-10-12Also moved fallback definition of __has_attributeNobuyoshi Nakada
2019-10-12Moved RB_METHOD_DEFINITION_DECL to intern.hNobuyoshi Nakada
2019-10-07Note RB_PASS_EMPTY_KEYWORDS and RB_SCAN_ARGS_EMPTY_KEYWORDS will be removedJeremy Evans
2019-09-29Add three more C-API functions for handling keywordsJeremy Evans
2019-09-26Fix more keyword separation issuesJeremy Evans
2019-09-27Adjusted spaces [ci skip]Nobuyoshi Nakada
2019-09-26include/ruby/ruby.h: suppress a false-positive warning of GCCYusuke Endoh
2019-09-25Make rb_scan_args handle keywords more similar to Ruby methods (#2460)Jeremy Evans
2019-09-21Disable method definition type checks on WindowsNobuyoshi Nakada
2019-09-20Fix for explicit cast without RUBY_METHOD_FUNCNobuyoshi Nakada
2019-09-20Check various method defitions in C++Nobuyoshi Nakada
2019-09-20Check method functions in C++Nobuyoshi Nakada
2019-09-15rb_scan_args_count_lead: use arguments instead of magic numbersNobuyoshi Nakada
2019-09-14Only set RB_PASS_CALLED_KEYWORDS in C functions called directly from RubyJeremy Evans
2019-09-13Consolidate empty keyword handlingJeremy Evans
2019-09-09workaround for C++ 98 const union problem.卜部昌平
2019-09-06Fix keyword argument separation warnings for enumeratorsJeremy Evans
2019-09-06Convert keyword argument to required positional hash argument for Class#new, ...Jeremy Evans
2019-09-06add include/ruby/backward/cxxanyargs.hpp卜部昌平
2019-09-05Add rb_funcall_with_block_kwJeremy Evans
2019-09-05hide rb_funcallv_with_cc from public卜部昌平
2019-09-04add rb_funcallv_with_cc()Urabe, Shyouhei