Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Workaround for a build error when using Ruby 2.7.0 with YARD
This PR fixes a build error when using Ruby 2.7.0 with YARD. ```console % cd path/to/repo/rubocop % ruby -v ruby 2.7.0p0 (2019-12-25 revision 647ee6f091) [x86_64-darwin17] % bundle exec rake rake aborted! LoadError: cannot load such file -- e2mmap /Users/koic/.rbenv/versions/2.7.0/bin/bundle:23:in `load' /Users/koic/.rbenv/versions/2.7.0/bin/bundle:23:in `<main>' Tasks: TOP => default => documentation_syntax_check => yard_for_generate_documentation (See full trace by running task with --trace) ``` After adding `e2mmap` gem, the following error occurs. ```console % bundle exec rake rake aborted! LoadError: cannot load such file -- irb/slex /Users/koic/.rbenv/versions/2.7.0/bin/bundle:23:in `load' /Users/koic/.rbenv/versions/2.7.0/bin/bundle:23:in `<main>' Tasks: TOP => default => documentation_syntax_check => yard_for_generate_documentation (See full trace by running task with --trace) ``` The following PR has been opened to resolve these errors. lsegal/yard#1296
- Loading branch information