Sha256: 34b1b25bb947985857f2c3f4c6f7270c09f6bcf07af61a32de298e158e331ff7

Contents?: true

Size: 414 Bytes

Versions: 2

Compression:

Stored size: 414 Bytes

Contents

Rails.application.routes.draw do

  # From "Devise with RSpec and Cucumber" Rails Tutorial
  # http://railsapps.github.io/tutorial-rails-devise-rspec-cucumber.html
#  authenticated :user do
#    root :to => 'home#index'
#  end
  root :to => "home#index"
  devise_for :users
  
  # Mount Gringotts engine wherever the hell you want to
  mount Gringotts::Engine => "/authentication", :as => :gringotts_engine
  
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gringotts-0.6.7 spec/dummy/config/routes.rb
gringotts-0.6.5 spec/dummy/config/routes.rb