comfy/comfy-blog

View on GitHub
lib/generators/comfy/blog/blog_generator.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

require "rails/generators/active_record"

module Comfy
  module Generators
    class BlogGenerator < Rails::Generators::Base

      include Rails::Generators::Migration
      include Thor::Actions

      source_root File.expand_path("../../../..", __dir__)

      def self.next_migration_number(dirname)
        ActiveRecord::Generators::Base.next_migration_number(dirname)
      end

      def generate_migration
        destination   = File.expand_path("db/migrate/01_create_blog.rb", destination_root)
        migration_dir = File.dirname(destination)
        destination   = self.class.migration_exists?(migration_dir, "create_blog")

        if destination
          puts "\e[0m\e[31mFound existing create_blog migration. Remove it if you want to regenerate.\e[0m"
        else
          migration_template "db/migrate/01_create_blog.rb", "db/migrate/create_blog.rb"
        end
      end

      def generate_initialization
        copy_file "config/initializers/comfy_blog.rb",
          "config/initializers/comfy_blog.rb"
      end

      def generate_routing
        route_string = <<-RUBY.strip_heredoc
          comfy_route :blog_admin, path: "/admin"
          comfy_route :blog, path: "/blog"
        RUBY
        route route_string
      end

      def generate_views
        directory "app/views/comfy/blog", "app/views/comfy/blog"
      end

      def show_readme
        readme "lib/generators/comfy/blog/README"
      end

    end
  end
end