Sha256: 1a0a11ff5f2c224253bf6f6ad1ea0302df123052cf2490294f6dfd1cee704f2e
Contents?: true
Size: 651 Bytes
Versions: 3
Compression:
Stored size: 651 Bytes
Contents
require_relative "base" module Suspenders class StylesheetBaseGenerator < Generators::Base def add_stylesheet_gems gem "bourbon", ">= 6.0.0" Bundler.with_unbundled_env { run "bundle install" } end def remove_prior_config remove_file "app/assets/stylesheets/application.css" end def add_css_config copy_file( "application.scss", "app/assets/stylesheets/application.scss", force: true ) end def install_bitters run "bitters install --path app/assets/stylesheets" end def install_normalize_css run "bin/yarn add normalize.css" end end end
Version data entries
3 entries across 3 versions & 1 rubygems