Sha256: 6f6596adf3ccd370e7de4a4db5889e13ea9f5477aee6929fcaae167ae93195e5
Contents?: true
Size: 517 Bytes
Versions: 5
Compression:
Stored size: 517 Bytes
Contents
require 'rails/generators' class Sufia::Models::MinimagickConfigGenerator < Rails::Generators::Base source_root File.expand_path('../templates', __FILE__) desc """ This Generator makes the following changes to your application: 1. Creates new mini_magick.rb initializer configuring use of posix-spawn """ def banner say_status("info", "ADDING MINIMAGICK CONFIG", :blue) end def create_configuration_file copy_file 'config/mini_magick.rb', 'config/initializers/mini_magick.rb' end end
Version data entries
5 entries across 5 versions & 1 rubygems