Sha256: 6e1fd7e538dbe1afcafb3b3220588689ad41697e1266c2363dc279a4e07e33f4

Contents?: true

Size: 719 Bytes

Versions: 5

Compression:

Stored size: 719 Bytes

Contents

require 'rails/generators'
require 'rails/generators/active_record'
module GoodJob
  #
  # Rails generator used for setting up GoodJob in a Rails application.
  # Run it with +bin/rails g good_job:install+ in your console.
  #
  class InstallGenerator < Rails::Generators::Base
    include Rails::Generators::Migration

    class << self
      delegate :next_migration_number, to: ActiveRecord::Generators::Base
    end

    source_paths << File.join(File.dirname(__FILE__), "templates/install")

    # Generates monolithic migration file that contains all database changes.
    def create_migration_file
      migration_template 'migrations/create_good_jobs.rb.erb', 'db/migrate/create_good_jobs.rb'
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
good_job-1.11.2 lib/generators/good_job/install_generator.rb
good_job-1.11.1 lib/generators/good_job/install_generator.rb
good_job-1.11.0 lib/generators/good_job/install_generator.rb
good_job-1.10.1 lib/generators/good_job/install_generator.rb
good_job-1.10.0 lib/generators/good_job/install_generator.rb