gemfile: needs add source rubygems.org

`bundle install` command on fedora 21 was failing
with following message:

Your Gemfile has no gem server sources. If you need
gems that are not already on your machine, add a line
like this to your Gemfile:
source 'https://rubygems.org'

After adding that line it worked again.

https://bugzilla.gnome.org/show_bug.cgi?id=746205
This commit is contained in:
Nelson Benítez León 2015-03-14 15:38:40 +05:00 committed by Jakub Steiner
parent 838c9a0d98
commit 11096885ae
2 changed files with 2 additions and 0 deletions

View File

@ -1 +1,2 @@
source 'https://rubygems.org'
gem "sass", "~> 3.4.0"

View File

@ -1 +1,2 @@
source 'https://rubygems.org'
gem "sass", "~> 3.4.0"