Book Image

Redmine Cookbook

By : Shamasis Bhattacharya
Book Image

Redmine Cookbook

By: Shamasis Bhattacharya

Overview of this book

In a variety of online project management tools, Redmine markets itself as offering flexibility. Choosing the right management tool can mean the difference between the success and failure of a project. Flexible project management tools bend themselves to fit your needs, whether that’s communication regarding a simple project, or collaboration, or more complex project methodology such as SCRUM, or an issue-code relationship, or the need of different methodology for your project. Whether you are project manager or system administrator, this book provides valuable recipes to get the best possible performance out of your team, organization, infrastructure, and Redmine itself. Through a series of carefully crafted recipes covering the nitty-gritty of Redmine, you’ll be guided through the installation of Redmine, as well as how to fine-tune and customize your Redmine installation. Finally, we walk you through integrating Redmine with other softwares and databases like Tortoise SVN and Visual Studio and troubleshooting Redmine.
Table of Contents (17 chapters)
Redmine Cookbook
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Index

Troubleshooting bundler installation


The bundle install command is used during the Redmine installation or installation of some plugins. The most common reason for bundler installation failing is missing libraries, so gems can't compile. Usually, such problems are resolved by installing the necessary system libraries.

How to do it…

The most common error that you will get while running bundle install is as follows:

Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

This error indicates that installation of a gem failed, usually console output will give you exact details on which gem failed to compile, and instruction to run gem install [somegemname] to install this gem manually instead of through bundler. To see exact details about missing libs, type the gem install [gemname] as instructed in console output. Let's take the following example:

An error occurred while installing mysql2 (0.3.20), and Bundler cannot continue.
Make sure that `gem install mysql2 -v ...