當我運行bundle install command.it時,我必須運行一個現有的項目,在它上面停留將近半個小時,但仍然沒有完成bundle install命令。使用ruby1.9.3p327和我的rails版本是3.2.9,項目使用原生擴展安裝linecache19(0.5.12)
source 'https://rubygems.org'
gem 'rails', '3.2.8'
gem 'pg', '0.14.1'
gem 'compass', git: 'git://github.com/chriseppstein/compass.git'
gem 'sass-rails', '~> 3.2.3'
gem 'jquery-rails', '~> 2.0.0'
gem 'devise', '~> 2.0.0'
gem 'bootstrap-sass', '2.1.1.0'
gem 'simple_form', '2.0.4'
#gem 'refinerycms', '2.0.8'
gem 'refinerycms-dashboard'
gem 'refinerycms-images'
gem 'refinerycms-pages'
gem 'refinerycms-resources'
gem 'refinerycms-bootstrap', git: 'git://github.com/ghoppe/refinerycms-bootstrap.git'
gem 'rest-client', '1.6.7', require: 'rest_client'
gem 'hashie', '1.2.0'
gem 'faye'
gem 'restforce'
# gems from old site's gemfile
gem 'databasedotcom' # we may get rid of this
gem 'databasedotcom-rails' # we may get rid of this
gem 'haml'
gem 'will_paginate'
gem 'httparty'
gem 'ruby-openid', :git => "git://github.com/mbleigh/ruby-openid.git"
gem 'openid_active_record_store'
gem 'omniauth-twitter'
gem 'omniauth-github'
gem 'omniauth-facebook'
gem 'omniauth-linkedin'
gem 'omniauth-openid'
gem 'omniauth-salesforce'
gem 'savon'
gem 'redis'
gem 'aws-s3', :require => 'aws/s3' # no longer needed?
gem 'thin'
gem 'resque', :git => 'http://github.com/hone/resque.git', :branch => 'keepalive', :require => 'resque/server'
gem "recaptcha", :require => "recaptcha/rails"
gem 'flash_messages_helper'
gem 'remote_syslog_logger'
gem 'dalli'
gem 'encryptor'
gem 'airbrake'
gem 'chosen-rails'
gem 'fog'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end
group :development, :test do
gem 'annotate', '2.4.0'
gem 'guard'
gem 'guard-bundler'
gem 'guard-rspec'
gem 'spork'
gem "guard-spork"
gem 'growl'
gem 'ruby-debug19'
gem 'sqlite3'
gem 'rspec-rails'
gem 'sextant'
gem 'quiet_assets'
gem 'vcr'
gem 'rb-fsevent', '~> 0.9.1'
gem 'sql-logging'
end
group :test do
# Pretty printed test output
gem 'turn', :require => false
gem "minitest"
gem "rake"
gem 'webmock'
gem "mocha"
end
和線路爲它停留很長一段時間的寶石文件
安裝linecache19(0.5.12)與原生擴展
任何一個請幫助如何安裝這個項目?
你能在這裏粘貼錯誤日誌?你使用什麼操作系統? –
當我運行軟件包安裝它安裝了很多寶石,但它在這條線上保持很長時間 安裝linecache19(0.5.12)與本機擴展 所以沒有錯誤日誌,我正在使用ubuntu12.04。 –
試試gem install linecache19 --backtrace –