Sha256: 849cbe7e38aa8a4f42f557e4e15a83f1115ee8aab0c7cc2cbdc06cdbc4965c67

Contents?: true

Size: 725 Bytes

Versions: 1

Compression:

Stored size: 725 Bytes

Contents

# frozen_string_literal: true

require 'rails/generators'

module Scrapbook
  # Initial default setup of Scrapbook
  class InstallGenerator < Rails::Generators::Base
    class_option 'path-with-name', default: 'scrapbook'

    def install
      name = Pathname.new(options.fetch('path-with-name')).basename.to_s

      generate 'scrapbook:routes', name
      generate 'scrapbook:new', options.fetch('path-with-name')
      sprockets_support
    end

    private

    def sprockets_support
      relative_path = 'app/assets/config/manifest.js'
      return unless FileTest.exist?(File.expand_path(relative_path, destination_root))

      insert_into_file(relative_path, '//= link scrapbook/application.css')
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
scrapbook-0.2.2 lib/generators/scrapbook/install_generator.rb