Sha256: 9be7d2d28be2b162198dabf48cdb80a8a8514e8ebbe83615fd06b7641ad8863a
Contents?: true
Size: 467 Bytes
Versions: 6
Compression:
Stored size: 467 Bytes
Contents
require 'rails/generators' module Theme module Generators class ThreeColPortfolioGenerator < ::Rails::Generators::Base source_root File.expand_path("../templates", __FILE__) desc "A Bootstrap HTML starter template (from startbootstrap.com)" def create_page copy_file 'index.html', 'app/views/visitors/index.html.erb' copy_file '3-col-portfolio.css', 'app/assets/stylesheets/3-col-portfolio.css' end end end end
Version data entries
6 entries across 6 versions & 1 rubygems