Marcus Stollsteimer
Marcus Stollsteimer
Fixed with #2804, commit ca57fff78edb98dc6ba76246df0b95e3538950ee. The original content can be found on archive.org; the Ruby tutorial ("Ruby Study Notes") for example here: https://web.archive.org/web/20210816095349/https://rubylearning.com/satishtalim/tutorial.html
The original statement seems to be correct: ~~~ ruby irb(main):001:0> RUBY_VERSION => "3.1.2" irb(main):002:0> def my_test_method; end => :my_test_method irb(main):003:0> Object.public_methods.grep /my/ => [] irb(main):004:0> Object.private_methods.grep /my/ => [:my_test_method] irb(main):005:0>...
You might try the lanyon gem (https://github.com/stomar/lanyon), which is an (almost) drop-in replacement for rack-jekyll (it does not provide auto-regeneration, though). config.ru: ``` require "lanyon" run Lanyon.application ```
``` ruby 1.9.3p194 (2012-04-20 revision 35410) [i686-linux] ["1.6.15", "stty"] ``` Same behavior with 1.9.3p327, 1.8.7p371 (using rvm) and system ruby (1.9.3p0)
Small update: I finally got `termios` installed (I used the wrong gem and gave up too early), and as you probably already know, with `termios` it works, the only difference...