Rails3 での cucumber の起動を spork で早くする手順を Spork and drb - GitHub に沿って紹介します*1。 Gemfile に以下を追記します。 gem 'spork', :group => [:development, :test] spork オプション付きでプロジェクトの cucumber を設定しなおします。path.rb を上書きされるのですでに編集しているなら退避しておきます。 rails generate cucumber:install --spork あとは spork を起動しておいて、そのポートを指定して cucumber を実行します。 bundle exec spork cuc --port 12345 & cucumber --drb --port 12345