summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-proc-ext/test/proc.rb
AgeCommit message (Collapse)Author
2021-04-16feat(CI): add the GitHub Super LinterJohn Bampton
The GitHub Super Linter is a more robust and better supported tool than the current GitHub Actions we are using. Running these checks: ERROR_ON_MISSING_EXEC_BIT: true VALIDATE_BASH: true VALIDATE_BASH_EXEC: true VALIDATE_EDITORCONFIG: true VALIDATE_MARKDOWN: true VALIDATE_SHELL_SHFMT: true VALIDATE_YAML: true https://github.com/marketplace/actions/super-linter https://github.com/github/super-linter Added the GitHub Super Linter badge to the README. Also updated the pre-commit framework and added more documentation on pre-commit. Added one more pre-commit check: check-executables-have-shebangs Added one extra check for merge conflicts to our GitHub Actions. EditorConfig and Markdown linting. Minor grammar and spelling fixes. Update linter.yml
2021-04-15Fix `enable_debug_info?` in `mrbgems/mruby-proc-ext/test/proc.rb`KOBAYASHI Shuji
2021-03-30Disable tests on backtraces w/ unknown line numbersfundamental
2019-06-11Remove redundant colon in `Proc#inspect` (`mruby-proc-ext`)KOBAYASHI Shuji
Before this patch: $ bin/mruby -e 'p proc{}' #=> #<Proc:0x7fd5eb8206d0@-e::1> After this patch: $ bin/mruby -e 'p proc{}' #=> #<Proc:0x7fd5eb8206d0@-e:1>
2019-01-03Add test for #<< and #>> for Proc and Method classdearblue
2018-12-21Add test for Proc#parametersTatsuhiko Kubo
2017-08-30Tested LocalJumpErrors caused by break in a procChristopher Aue
2017-04-02Fix parameters when noname restksss
2016-12-21Proc shouldn't have `initialize` methodksss
Fix #3356
2016-11-24Fix calling .arity on Proc with undefined `initialize`Francois Chagnon
Reported by @bouk
2015-06-22Proc#curry should preserve lambdascremno
2014-06-25Implement Proc#parametersksss
2014-05-24Use `assert_kind_of` instead.take_cheeze
2014-05-19Move `Kernel.local_variables` to core.take_cheeze
2014-05-18Add ISO index to `Kernel.local_variables`.take_cheeze
2014-05-14Kernel.local_variables to list UPVAR as wellYukihiro "Matz" Matsumoto
2014-04-29Implement Kernel.local_variables for testing dumped local variables information.take_cheeze
2014-04-14Fix and add test to Proc#inspect .Takeshi Watanabe
2014-03-31Add API to define cfunc Proc with userdata.take_cheeze
The APIs are defined in mruby-proc-ext so include it before using this API. See mruby-proc-ext's test code for usage. This should resolve #1794.
2014-03-06fix and add test for Proc#source_locationtake_cheeze
2013-08-04Improve test of mruby-proc-ext GEMDaniel Bovensiepen
2013-04-17Add mruby-proc-exth2so5