Sha256: cff145bf5f714a46c19ef27926c94919a97fbfcef3597e01fc914bf344d2d898

Contents?: true

Size: 710 Bytes

Versions: 1

Compression:

Stored size: 710 Bytes

Contents

require 'rails/generators'
require 'rails/generators/migration'

module Merrycms
  class InstallDocumentsGenerator < Rails::Generators::Base
    include Rails::Generators::Migration
  
    def self.source_root
      @source_root ||= File.join(File.dirname(__FILE__), 'templates')
    end
  
    def self.next_migration_number(dirname)
      if ActiveRecord::Base.timestamped_migrations
        Time.now.utc.strftime("%Y%m%d%H%M%S")
      else
        "%.3d" % (current_migration_number(dirname) + 1)
      end
    end
              
    def create_translations_migration_files
      migration_template 'create_documents_migration.rb', 'db/migrate/create_documents.rb'
      sleep 1
    end
          
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
merrycms-0.1.4 lib/generators/merrycms/install_documents_generator.rb