我使用http://jaysonrowe.blogspot.com/2012/04/installing-ruby-and-rails-on-fedora.html在rails环境中设置ruby .我安装了mysql 5.5.现在,当我从bitbucket克隆一个项目并运行bundle install时,我收到以下错误:
[xyz@xyz ruby_repo]$ bundle install
Fetching gem metadata from http://rubygems.org/......
Fetching gem metadata from http://rubygems.org/..
Could not find capistrano-2.13.3 in any of the sources
Run Code Online (Sandbox Code Playgroud)
当我在ruby_repo目录中执行rails -v时,出现以下错误:
[xyz@xyz ruby_repo]$ rails -v
Could not find abstract-1.0.0 in any of the sources
Run `bundle install` to install missing gems.
Run Code Online (Sandbox Code Playgroud)
下面是我的Gemfile:
source 'http://rubygems.org'
gem 'rails', '3.0.10'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'rmagick'
gem "will_paginate", "~> 3.0.pre2"
gem 'mysql2','0.2.7'
gem "nokogiri"
gem 'activemerchant', …Run Code Online (Sandbox Code Playgroud)