Sha256: f042dc24d0530b5f09f2cc4630a980a3eb3a99f748f3e6751853a0eb14efd431
Contents?: true
Size: 796 Bytes
Versions: 4
Compression:
Stored size: 796 Bytes
Contents
require "rails/generators" module Suspenders class StylesheetBaseGenerator < Rails::Generators::Base source_root File.expand_path( File.join("..", "..", "..", "templates"), File.dirname(__FILE__)) def add_stylesheet_gems gem "bourbon", "~> 5.0" gem "neat", "~> 2.1" Bundler.with_clean_env { run "bundle install" } end def add_css_config copy_file( "application.scss", "app/assets/stylesheets/application.scss", force: true, ) end def remove_prior_config remove_file "app/assets/stylesheets/application.css" 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
4 entries across 4 versions & 1 rubygems