brightin/brightcontent

View on GitHub
attachments/lib/generators/brightcontent/attachments/install_generator.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Brightcontent
  module Attachments
    module Generators
      class InstallGenerator < Rails::Generators::Base
        desc "Install migrations for Brightcontent Attachments"
        def copy_migrations
          rake "brightcontent_attachments_engine:install:migrations"
        end
      end
    end
  end
end