Sha256: 18ead0b00606d6b8ec458b996908096bf6bf4f7a0d90e7b34f39c261461e70a7
Contents?: true
Size: 982 Bytes
Versions: 1
Compression:
Stored size: 982 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 "redmint_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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
redmint_composer-2.3 | recipes/frontend.rb |