Sha256: b7eddba0e4ebac939ed785ca4397e385755b9852f68c45f0a7bce3c30d88588a
Contents?: true
Size: 1.13 KB
Versions: 14
Compression:
Stored size: 1.13 KB
Contents
require "rails/generators/active_record" class PaperclipGenerator < ActiveRecord::Generators::Base desc "Create a migration to add paperclip-specific fields to your model. " + "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", __dir__) end def generate_migration migration_template("paperclip_migration.rb.erb", "db/migrate/#{migration_file_name}", migration_version: migration_version) end def migration_name "add_attachment_#{attachment_names.join('_')}_to_#{name.underscore.pluralize}" end def migration_file_name "#{migration_name}.rb" end def migration_class_name migration_name.camelize end def migration_version "[#{Rails::VERSION::MAJOR}.#{Rails::VERSION::MINOR}]" if Rails.version.first.to_i > 4 end end
Version data entries
14 entries across 14 versions & 1 rubygems