Running Rails under Windows with this in config/boot.rb: require 'bootsnap/setup'
Results in
ruby33/lib/ruby/3.3.0/gems/eventmachine-1.2.7/lib/em/resolver.rb:14:in
<class:Resolver>': undefined method
get_hosts_path' for module Win32::Resolv (NoMethodError)
To solve this particular issue, add the following code to config/boot.rb prior to bootsnap:
This require ensures that the Win32::Resolv module, and the get_hosts_path method, is available to EventMachine when it is referenced within Bootsnap.
An example of config/boot.rb with Bootsnap implemented according to Bootsnap, including BootLib, as described by Bootsnap and its reference to BootLib (This assumes that the BootLib module exists in lib/core_ext/, and includes Bumbler, YMMV):