Sha256: 309faaed0cf266a430a1260141366deff74ce916cc8ebe719c74e0c9c70b3b1d
Contents?: true
Size: 1.19 KB
Versions: 4
Compression:
Stored size: 1.19 KB
Contents
# Application template recipe for the rails3_devise_wizard. Check for a newer version here: # https://github.com/fortuity/rails3_devise_wizard/blob/master/recipes/home_page.rb after_bundler do say_wizard "HomePage recipe running 'after bundler'" # remove the default home page remove_file 'public/index.html' # create a home controller and view generate(:controller, "home index") # set up a simple home page (with placeholder content) if recipes.include? 'haml' remove_file 'app/views/home/index.html.haml' # There is Haml code in this script. Changing the indentation is perilous between HAMLs. # We have to use single-quote-style-heredoc to avoid interpolation. create_file 'app/views/home/index.html.haml' do <<-'HAML' %h3 Home HAML end else remove_file 'app/views/home/index.html.erb' create_file 'app/views/home/index.html.erb' do <<-ERB <h3>Home</h3> ERB end end # set routes gsub_file 'config/routes.rb', /get \"home\/index\"/, 'root :to => "home#index"' end __END__ name: HomePage description: "Create a simple home page (creates a home controller and view)." author: fortuity category: other tags: [utilities, configuration]
Version data entries
4 entries across 4 versions & 1 rubygems