Commit 17b3505ab70c4def972f0ef6263459296c31890b

Authored by Dan Croak
1 parent a27cc41b

changed root route to sign_in instead of sign_up to avoid infinite redirects.

config/environments/cucumber.rb
@@ -25,3 +25,5 @@ require 'rubygems' @@ -25,3 +25,5 @@ require 'rubygems'
25 require 'factory_girl' 25 require 'factory_girl'
26 require 'shoulda' 26 require 'shoulda'
27 27
  28 +HOST = "localhost"
  29 +
config/routes.rb
1 ActionController::Routing::Routes.draw do |map| 1 ActionController::Routing::Routes.draw do |map|
2 2
3 - map.root :controller => "clearance/users", :action => "new" 3 + map.root :controller => "clearance/sessions", :action => "new"
4 4
5 # See how all your routes lay out with "rake routes" 5 # See how all your routes lay out with "rake routes"
6 6