2015-12-24 13 views
9

私は本を読んでいるキュウリとチーズによってJ.Morganと私はレールpuppyアプリに問題があります。レールを実行するとエラーが発生する

/usr/local/lib/ruby/gems/2.2.0/gems/activesupport-3.2.1/lib/active_support/values/time_zone.rb:268: warning: circular argument reference - now 
/usr/local/lib/ruby/gems/2.2.0/gems/bundler-1.11.2/lib/bundler/runtime.rb:80:in `rescue in block (2 levels) in require': There was an error while trying to load the gem 'coffee-rails'. (Bundler::GemRequireError) 
    from /usr/local/lib/ruby/gems/2.2.0/gems/bundler-1.11.2/lib/bundler/runtime.rb:76:in `block (2 levels) in require' 
    from /usr/local/lib/ruby/gems/2.2.0/gems/bundler-1.11.2/lib/bundler/runtime.rb:72:in `each' 
    from /usr/local/lib/ruby/gems/2.2.0/gems/bundler-1.11.2/lib/bundler/runtime.rb:72:in `block in require' 
    from /usr/local/lib/ruby/gems/2.2.0/gems/bundler-1.11.2/lib/bundler/runtime.rb:61:in `each' 
    from /usr/local/lib/ruby/gems/2.2.0/gems/bundler-1.11.2/lib/bundler/runtime.rb:61:in `require' 
    from /usr/local/lib/ruby/gems/2.2.0/gems/bundler-1.11.2/lib/bundler.rb:99:in `require' 
    from /home/iza/puppies/config/application.rb:7:in `<top (required)>' 
    from /usr/local/lib/ruby/gems/2.2.0/gems/railties-3.2.1/lib/rails/commands.rb:53:in `require' 
    from /usr/local/lib/ruby/gems/2.2.0/gems/railties-3.2.1/lib/rails/commands.rb:53:in `block in <top (required)>' 
    from /usr/local/lib/ruby/gems/2.2.0/gems/railties-3.2.1/lib/rails/commands.rb:50:in `tap' 
    from /usr/local/lib/ruby/gems/2.2.0/gems/railties-3.2.1/lib/rails/commands.rb:50:in `<top (required)>' 
    from script/rails:6:in `require' 
    from script/rails:6:in `<main>' 

P.S. - 私はレールSを実行するとつまり、私は次のエラーを取得します非常に長い時間のために非アクティブになっているようだ原因私は本の著者のサイトでこの質問を投稿しませんでした:(

マイGemfile

source 'http://rubygems.org' 

gem 'rails', '3.2.1' 

gem 'json_pure' 
gem 'spruz' 

# Bundle edge Rails instead: 
# gem 'rails', :git => 'git://github.com/rails/rails.git' 

gem 'sqlite3-ruby', :require => 'sqlite3' 
gem 'will_paginate' 
gem 'jquery-rails' 

group :assets do 
    gem 'sass-rails', '~> 3.2.4' 
    gem 'coffee-rails', '~> 3.2.2' 
    gem 'uglifier', '>= 1.2.3' 
end 

group :development, :test do 
    gem 'rspec-rails' 
end 

group :test do 
gem 'page-object' 
gem 'rspec' 
gem 'cucumber' 
end 

マイレール(4.2.5、3.2 0.1)

+0

Gemfileを投稿してください。グループ化にエラーがあるようです。また、どのバージョンのRailsを使用していますか? Gemfileのフォーマットが変更されました。 –

+0

私のオリジナルポストに追加 –

+0

nodejsをインストールしました_sudo apt-get install nodejs_同じ問題に直面している場合は、_https://gist.github.com/henrique-kyke/3145836_ – VKatz

答えて

20

それはあなたがNodeJs

sudo apt-get install nodejs 

が動作するはず設置have'tのように見えます!

+0

@Jack喜んでそれを助けました:):D – VKatz

+0

これはcentosのために少し違っています: 'sudo yum install -y nodejs' パッケージが見つからない場合は、EPELが必要です: 'sudo yum install -y epel-release' – virtuexru

+0

@VKatzありがとう、それは私のために働いたが、私は質問があります。 Ruby on RailsのイベントでNodejsを使用する必要がありますか? –

1

NodeJSをインストールする必要があります。 Ubuntuの上でそれをインストールするには 、実行してください:OSXで

sudo apt-get install nodejs 

は、実行:OSXで

brew install nodejs 

を、Uglifierは、JSのラッパーであり、JSランタイムの実行中またはJSインタプリタを必要とします。

関連する問題