0

I'm trying to run bundle on a Win machine for an existing app. One of the gems is using HiRedis as a dependency. Since it is impossible to install HiRedis on Win:

  • Is there a way to find out which gem is using HiRedis?
  • Is there a way to run bundle command with --without [hiredis]?
dimitry_n
  • 2,939
  • 1
  • 30
  • 53

1 Answers1

1

You can find the gem which uses the hiredis, from the Gemfile.lock. Search for hiredis, and check to see under which Gem is that hiredis appearing.

coderhs
  • 4,357
  • 1
  • 16
  • 25