Skip to content

Commit

Permalink
now pulling devise from regular gem install instead of git
Browse files Browse the repository at this point in the history
  • Loading branch information
Graeme Nelson committed Sep 25, 2010
1 parent bb2c84b commit 4f81075
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions bootstrap/setup/setup_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ def setup_initial_configuration
gsub_file "#{Rails.root}/config/routes.rb", "devise_for :#{@resource}", ""

routeconfig = <<-ROUTECONFIG
devise_for :#{@resource}, :path_names => { :sign_in => 'signin', :sign_out => 'signout', :sign_up => 'signup' }
as :#{@resource.singularize} do
get "/signup" => "devise/registrations#new"
Expand Down
2 changes: 1 addition & 1 deletion template.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
# Let's setup our gems used in all environments
gem "haml", ">= 3.0.18"
gem "haml-rails"
gem "devise", :git => "git://github.com/plataformatec/devise.git"
gem "devise", ">= 1.1.3"
gem 'formtastic', ">= 1.1.0"

# Let's setup the gems we only need for testing
Expand Down

0 comments on commit 4f81075

Please sign in to comment.