astropanic
astropanic

Reputation: 10939

Check system dependencies for a gem

How I can check which system libraries I need for my gems ?

For example the Mysql gem needs the mysql header files, rmagick requires imagemagick, and so on...

How I can list all libraries needed to install the gem ?

If it is not possible, how I can check if all system dependencies are satisfied to install the selected gem ?

Upvotes: 2

Views: 1581

Answers (1)

dee-see
dee-see

Reputation: 24078

Use the gem dependency GEMNAME command.

See the documentation here.

Upvotes: 4

Related Questions