Gitlabインストール時にエラーに遭遇したのでメモ
環境
CentOS release 6.5 (Final)
GitLab 6.8.1
ruby 2.1.1
下記を参考にインストール
http://qiita.com/narumi888/items/da664ce0aca5373fd9aa
Gemsのインストール
$ cd /home/git/gitlab
$ bundle install --deployment --without development test postgres
ここでエラー発生
An error occurred while installing charlock_holmes (0.6.9.4), and Bundler cannot continue.
調べたらlibicu-develが入ってないとエラーになるらしいのでインストール
$ sudo yum install libicu-devel
無事インストールできました。