I’ve been hacking around with Ruby a little and I have been wondering if there is a utility or tool that you can use to determine all the gems that a ruby script requires. Basically, I have been finding it kind of annoying having to work with a ruby script that I didn’t write, I don’t know all the gem dependencies for, and I don’t know if said gems are all installed.
Share
The using of bundler help to know all gem is needed. But You can’t to know which is required. Because you can use gem or other system to require your librarie.