Sha256: 5811225d7340f3157b64556feaf0a24d5412619e3e6ecb20fee4aa7bd0623969
Contents?: true
Size: 985 Bytes
Versions: 55
Compression:
Stored size: 985 Bytes
Contents
# Application template recipe for the rails_apps_composer. Change the recipe here: # https://github.com/RailsApps/rails_apps_composer/blob/master/recipes/frontend.rb stage_two do say_wizard "recipe stage two" # set up a front-end framework using the rails_layout gem case prefs[:frontend] when 'simple' generate 'layout:install simple -f' when 'bootstrap2' generate 'layout:install bootstrap2 -f' when 'bootstrap3' generate 'layout:install bootstrap3 -f' when 'foundation4' generate 'layout:install foundation4 -f' when 'foundation5' generate 'layout:install foundation5 -f' end ### GIT ### git :add => '-A' if prefer :git, true git :commit => '-qm "rails_apps_composer: front-end framework"' if prefer :git, true end __END__ name: frontend description: "Install a front-end framework for HTML5 and CSS." author: RailsApps requires: [setup, gems] run_after: [setup, gems, devise, omniauth, roles] category: frontend
Version data entries
55 entries across 55 versions & 1 rubygems