RyuPiT / SharePla

「複数人で旅行したくて計画をたてようとしている人」 向けの  「SharePla」 は  「旅行のプランをたてるお手伝い」 をする  「webサービス」 です。
http://sharepla.herokuapp.com/
MIT License
34 stars 3 forks source link

Use nokogiri on Travis-ci #126

Closed Basis104 closed 10 years ago

Basis104 commented 10 years ago

症状

Gemfileに gem 'nokogiri' と追加するとerrorが以下のように出た

You are trying to install in deployment mode after changing
your Gemfile. Run `bundle install` elsewhere and add the
updated Gemfile.lock to version control.
You have added to the Gemfile:
* nokogiri

解決策

.travis.yml に

before_install:
  - gem install nokogiri -- --with-cflags='--std=gnu99'

を記述すれば取り敢えず通る

Basis104 commented 10 years ago

アドバイスありがとうございます。 改行入れました