ruby - How to install code of gem and all its dependencies into one folder -
is there way place code specific gem , dependencies 1 folder?
to install gem , dependencies specific folder one-off operation, can use --install-dir
option gem install
:
gem install unicorn --install-dir my_folder
that install unicorn, along dependencies kgio, rack, , raindrops, under my_folder.
Comments
Post a Comment