-
Notifications
You must be signed in to change notification settings - Fork 247
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wdm install advice on Windows could be improved #451
Labels
Comments
Thanks! It helps.
|
ColinDKelley
added a commit
to Invoca/listen
that referenced
this issue
Dec 1, 2020
…orms: instead of Gem.win_platform?
This was referenced Mar 9, 2021
amaiorano
added a commit
to amaiorano/amaiorano.github.io
that referenced
this issue
Dec 29, 2023
As per guard/listen#451 Note that I get this message when serving now: Please add the following to your Gemfile to avoid polling for changes: gem 'wdm', '>= 0.1.0' if Gem.win_platform?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm working on a Rails app and developing on Windows. I got advice to add
wdm
to my Gemfile and did as instructed, but this resulted later in a problem when deploying the same Rails app on a Linux machine, where bundler complained:I fixed the issue by changing my Gemfile:
From what I understand, that way bundler knows that the gem is only needed on windows and can be smart about it. Maybe you could update the advice message that you display? However the platform symbol (
:x64_mingw
) may be different for each Ruby-on-Windows install.The text was updated successfully, but these errors were encountered: