2013-04-30 68 views
0

試圖通過升級gem重新生成一箇舊項目。遇到RSpec掛起時使用「--drb」選項掛起的問題。RSpec 2.13.1掛在Ruby 1.9.3上,使用Rails 3.2.13和Spork 1.0.0rc3

本身'rspec spec'正常工作。但是在另一個終端上啓動'spork',然後'rspec --drb spec'將CPU加速到〜40%,然後坐着。

使用Rails 3.2.13,Ruby 1.9.3-p392,RSpec 2.13.1和spork-rails 3.2.1,它依賴於Spork 1.0.0rc3。

的Gemfile

source 'http://rubygems.org' 

gem 'rails', '~> 3.2.13' 

gem 'devise', '~> 2.2.0' 
gem 'event-calendar', :require => 'event_calendar' 
gem 'has_scope' 
gem 'high_voltage' 
gem 'inherited_resources' 
gem 'jquery-rails' 
gem 'kaminari' 
gem 'ransack' 
gem 'simple_form' 
gem 'validates_timeliness' 

# deployment process management 
gem 'foreman' 
gem 'thin' 

# Gems used only for assets and not required 
# in production environments by default. 
group :assets do 
    gem 'sass-rails', '~> 3.2.3' 
    gem 'coffee-rails', '~> 3.2.1' 
    gem 'uglifier', '< 2.0' 
    gem 'bootstrap-sass', '~> 2.3.1' 
end 

group :production do 
    gem 'pg' 
end 

group :development, :test do 
    gem 'factory_girl_rails', '~> 4.2.0' 
    gem 'rspec-rails', '~> 2.13.1' 
    gem 'spork-rails' 
    gem 'sqlite3' 
end 

group :test do 
    gem 'capybara' 
    gem 'growl' 
    gem 'launchy' 
    gem 'ruby-prof' 
    gem 'test-unit' 
end 

規格/ spec_helper.rb

require 'rubygems' 
require 'spork' 
#uncomment the following line to use spork with the debugger 
#require 'spork/ext/ruby-debug' 

Spork.prefork do 

    # Prevent Devise from loading the User model super early with it's routes 
    # see: https://github.com/sporkrb/spork/wiki/Spork.trap_method-Jujitsu 
    require "rails/application" 
    Spork.trap_method(Rails::Application::RoutesReloader, :reload!) 

    # This file is copied to spec/ when you run 'rails generate rspec:install' 
    ENV["RAILS_ENV"] ||= 'test' 

    require File.expand_path("../../config/environment", __FILE__) 
    require 'rspec/rails' 
    require 'rspec/autorun' 

    # Since I have included Test::Unit for perfomance tests, disable auto-run 
    Test::Unit::AutoRunner.need_auto_run = false if defined?(Test::Unit::AutoRunner) 

    # Requires supporting ruby files with custom matchers and macros, etc, 
    # in spec/support/ and its subdirectories. 
    Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f } 

    RSpec.configure do |config| 
    # ## Mock Framework 
    # 
    # If you prefer to use mocha, flexmock or RR, uncomment the appropriate line: 
    # 
    # config.mock_with :mocha 
    # config.mock_with :flexmock 
    # config.mock_with :rr 

    # If you're not using ActiveRecord, or you'd prefer not to run each of your 
    # examples within a transaction, remove the following line or assign false 
    # instead of true. 
    config.use_transactional_fixtures = true 

    # If true, the base class of anonymous controllers will be inferred 
    # automatically. This will be the default behavior in future versions of 
    # rspec-rails. 
    config.infer_base_class_for_anonymous_controllers = false 

    # Run specs in random order to surface order dependencies. If you find an 
    # order dependency and want to debug it, you can fix the order by providing 
    # the seed, which is printed after each run. 
    #  --seed 1234 
    config.order = "random" 
    end 

end 

Spork.each_run do 
    # This code will be run each time you run your specs. 

end 

我沒有收到在控制檯上的任何錯誤消息或反饋,所以我甚至不知道從哪裏開始尋找問題。有什麼建議麼?

+0

呃,這個問題已經消失。我找不到任何合適的解釋。我瘋了嗎? – 2013-04-30 03:18:40

+0

呃,這個問題已經回來了,但我也發現我只能在我的兩臺機器之一上重現這個問題。 – 2013-04-30 23:46:53

+0

一臺機器有用於管理Rubies的RVM,另一臺使用rbenv ...我將嘗試徹底燒燬我的紅寶石並重建...看看是否有任何事情發生。 – 2013-04-30 23:47:29

回答

相關問題