Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to enable verbose flags in my Gemfile

How to enable verbose flags in my Gemfile, so that I can track exactly what is happening while building native extensions. Since it is usually taking a very long time to install.

gem install libv8
Fetching: libv8-3.11.8.11.gem (100%)
Building native extensions.  This could take a while...
like image 455
Sam Avatar asked Jan 09 '13 06:01

Sam


People also ask

Can I edit Gemfile lock?

Important! Gemfile. lock is automatically generated when you run bundle install or bundle update . It should never be edited manually.

What is the difference between Gemfile and Gemfile lock?

The Gemfile is where you specify which gems you want to use, and lets you specify which versions. The Gemfile. lock file is where Bundler records the exact versions that were installed. This way, when the same library/project is loaded on another machine, running bundle install will look at the Gemfile.

What can you do with Gemfile?

Your gemfile is a list of all gems that you want to include in the project. It is used with bundler (also a gem) to install, update, remove and otherwise manage your used gems. These gems belong to development environment and the test environment since they are for testing the application.

How do I install everything in Gemfile?

run the command bundle install in your shell, once you have your Gemfile created. This command will look your Gemfile and install the relevant Gems on the indicated versions. The Gemfiles are installed because in your Gemfile you are pointing out the source where the gems can be downloaded from. Save this answer.


1 Answers

You should use:

gem install --verbose libv8

And through bundle

bundle install --verbose
like image 173
hrr Avatar answered Sep 29 '22 12:09

hrr