I am cloning an application (developed on a Mac) that requires eventmachine <0.12.10>. Unfortunately, this particular version of eventmachine is incompatible with Windows, so I am getting thrown half a billion errors.
What should I do?
Thanks!
EDIT: eventmachine <0.12.10> is required directly. It is also required indirectly by thin (although thin simply requires an eventmachine with version >=0.12.06).
I had the same problem and found out that you need the –pre version of eventmachine in order to run thin. You can install eventmachine and thin manually or you can add this to your gem file:
gem “eventmachine”, “>= 1.0.0.beta” # same as eventmachine –pre
gem ‘thin’
This is working for me without a glitch so far.