Sha256: edef0fab7bc4660f1272b2a7bee34a3af43ea91853a2b2c4eaa01e3d8432d2ce

Contents?: true

Size: 755 Bytes

Versions: 2

Compression:

Stored size: 755 Bytes

Contents

# frozen_string_literal: true

module Quilt
  class RailsSetupGenerator < Rails::Generators::Base
    source_root File.expand_path("templates", __dir__)

    desc "This generator mounts the Quilt engine and add Procfile."

    def create_procfile_entry
      procfile_path = "Procfile"

      if File.exist?(procfile_path)
        append_file(procfile_path, File.read(File.expand_path(find_in_source_paths(procfile_path))))
      else
        copy_file(procfile_path)
      end
    end

    def create_route_file
      routes_path = "config/routes.rb"

      if File.exist?(routes_path)
        route("mount Quilt::Engine, at: '/'")
      else
        copy_file("routes.rb", routes_path)
      end

      say("Added Quilt engine mount")
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
quilt_rails-3.6.0 lib/generators/quilt/rails_setup/rails_setup_generator.rb
quilt_rails-3.5.6 lib/generators/quilt/rails_setup/rails_setup_generator.rb