确保' gem install~'在捆绑之前成功

时间:2014-12-15 12:53:28

标签: ruby-on-rails ruby

我今天开始学习Ruby on rails。 我已经安装了Ruby,DEVELOPMENT KIT,SQLite3,bundler和rails。

接下来,我的教科书说要在控制台中运行rails new todo。然后,出现以下消息:

Gem::RemoteFetcher::FetchError: SSL_connect returned=1 errno=0 state=SSLv3 read
server certificate B: certificate verify failed (https://rubygems.org/gems/coffee-rails-4.0.1.gem)
An error occurred while installing execjs (2.2.2), and Bundler cannot
continue.
Make sure that `gem install execjs -v '2.2.2'` succeeds before bundling.

我做了如下。

C:\rubyfolder>gem install execjs -v 2.2.2

然后它出现如下:

Fetching: execjs-2.2.2.gem (100%)
Successfully installed execjs-2.2.2
Parsing documentation for execjs-2.2.2
Installing ri documentation for execjs-2.2.2
Done installing documentation for execjs after 1 seconds
WARNING:  Unable to pull data from 'https://rubygems.org/': SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (https://api.rubygems.org/specs.4.8.gz)
1 gem installed

接下来,我再次运行rails new todo。然后,出现上述消息execjscoffee-script替换的消息。

Make sure that `gem install coffee-script -v '2.3.0'` succeeds before bundling.

接下来,我安装了咖啡脚本。

我已经重复了这种工作3到4次,但它还没有完成。我该怎么办?

execjs可能不是这个周期的第一个。我无法看到日志的第一部分)

2 个答案:

答案 0 :(得分:7)

我遇到过类似的问题。这对我有用:

  1. Gemfile或您指定了gems列表的任何地方,将source 'https://......'替换为此source 'http://.......',否则它会在捆绑前继续询问Make sure that gem install gem_name__ v xxx'成功。
  2. 执行bundle installrails new todo
  3. 完成,这次没有错误。

答案 1 :(得分:0)

只是分开运行gem install并不能解决问题的根源。看起来你没有为Rails安装所有需要的开发依赖项。尝试在official instruction内完成库。

此外,我从你的路径中看到你在Windows上尝试它,可能你需要以这种方式安装依赖项,因为官方文档没有提供此操作系统的说明: gem install rails --include-dependencies