Sha256: add8791fe98bf65548e7b46c2d107f6bc4f883af0119e68a4c83437c5eb4f2b1
Contents?: true
Size: 1.11 KB
Versions: 3
Compression:
Stored size: 1.11 KB
Contents
require 'rails/generators/active_record' module PaperclipDatabase module Generators class MigrationGenerator < ActiveRecord::Generators::Base desc "Create a migration to add database storage for the paperclip database storage." + "The NAME argument is the name of your model, and the following " + "arguments are the name of the attachments" argument :attachment_names, :required => true, :type => :array, :desc => "The names of the attachment(s) to add.", :banner => "attachment_one attachment_two attachment_three ..." def self.source_root @source_root ||= File.expand_path('../templates', __FILE__) end def generate_migration migration_template "migration.rb.erb", "db/migrate/#{migration_file_name}" end protected def migration_name "create_#{name.underscore.tr('/', '_')}_#{attachment_names.map{|n| n.pluralize}.join('_and_')}" end def migration_file_name "#{migration_name}.rb" end def migration_class_name migration_name.camelize end end end end
Version data entries
3 entries across 3 versions & 1 rubygems