Sha256: 82a4c97a04c7c7a4ec9966c3239d9aeb71f8c299b4c4a306c36f3bb7f0a93819
Contents?: true
Size: 1.65 KB
Versions: 2
Compression:
Stored size: 1.65 KB
Contents
# Application template recipe for the rails_apps_composer. Change the recipe here: # https://github.com/RailsApps/rails_apps_composer/blob/master/recipes/views.rb after_bundler do say_wizard "recipe running after 'bundle install'" ### DEVISE ### copy_from_repo 'app/views/devise/shared/_links.html.erb' if prefer :authentication, 'devise' copy_from_repo 'app/views/devise/registrations/edit.html.erb' if prefer :authentication, 'devise' copy_from_repo 'app/views/devise/registrations/new.html.erb' if prefer :authentication, 'devise' ### HOME ### copy_from_repo 'app/views/home/index.html.erb' if prefer :starter_app, 'users_app' copy_from_repo 'app/views/home/index.html.erb' if prefer :starter_app, 'admin_app' copy_from_repo 'app/views/home/index-subdomains_app.html.erb', :prefs => 'subdomains_app' ### USERS ### if ['users_app','admin_app','subdomains_app'].include? prefs[:starter_app] ## INDEX copy_from_repo 'app/views/users/index.html.erb' ## SHOW copy_from_repo 'app/views/users/show.html.erb' copy_from_repo 'app/views/users/show-subdomains_app.html.erb', :prefs => 'subdomains_app' ## EDIT copy_from_repo 'app/views/users/edit-omniauth.html.erb', :prefs => 'omniauth' end ### PROFILES ### copy_from_repo 'app/views/profiles/show-subdomains_app.html.erb', :prefs => 'subdomains_app' ### GIT ### git :add => '-A' if prefer :git, true git :commit => '-qm "rails_apps_composer: views"' if prefer :git, true end # after_bundler __END__ name: views description: "Add views needed for starter apps." author: RailsApps requires: [setup, gems, models, controllers] run_after: [setup, gems, models, controllers] category: mvc
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rails_apps_composer-2.2.12 | recipes/views.rb |
rails_apps_composer-2.2.11 | recipes/views.rb |