templates/layout.erb in rails3_devise_wizard-0.2.4 vs templates/layout.erb in rails3_devise_wizard-0.2.5

- old
+ new

@@ -22,10 +22,11 @@ @recipes = <%= resolve_recipes.map(&:key).inspect %> <%= render "helpers" %> +say_wizard "Checking configuration. Please confirm your preferences." <% resolve_recipes.each do |recipe| %> <%= render 'recipe', recipe.get_binding %> <% end %> <% if custom_code? %># >-----------------------------[ Custom Code ]-------------------------------< @@ -34,13 +35,18 @@ @current_recipe = nil # >-----------------------------[ Run Bundler ]-------------------------------< -say_wizard "Running Bundler install. This will take a while." +say_wizard "Running 'bundle install'. This will take a while." run 'bundle install' -say_wizard "Running after Bundler callbacks." +say_wizard "Running 'after bundler' callbacks." @after_blocks.each{|b| config = @configs[b[0]] || {}; @current_recipe = b[0]; b[1].call} @current_recipe = nil -say_wizard "Running after everything callbacks." +say_wizard "Running 'after everything' callbacks." @after_everything_blocks.each{|b| config = @configs[b[0]] || {}; @current_recipe = b[0]; b[1].call} + +@current_recipe = nil +say_wizard "Finished running the rails3_devise_wizard app template." +say_wizard "Your new Rails app is ready. Any problems?" +say_wizard "See http://github.com/fortuity/rails3-mongoid-devise/issues"