module Ecm module Downloads module Generators class InstallGenerator < Rails::Generators::Base desc "Generates the intializer" source_root File.expand_path('../templates', __FILE__) def generate_intializer copy_file "ecm_downloads.rb", "config/initializers/ecm_downloads.rb" end end end end end