class Mecha::Generators::AppGenerator

Public Instance Methods

say_warking() click to toggle source
# File lib/mecha/generators/app/app_generator.rb, line 17
      def say_warking
        message = <<-MESSAGE.strip_heredoc

          Please install PostgreSQL `brew install postgres` and NodeJS `brew install nodejs`.

        MESSAGE

        say message
      end

Protected Instance Methods

get_builder_class() click to toggle source
# File lib/mecha/generators/app/app_generator.rb, line 29
def get_builder_class
  Mecha::Generators::AppBuilder
end