lib/generators/ecm/contact/install/install_generator.rb in ecm_contact2-1.2.1 vs lib/generators/ecm/contact/install/install_generator.rb in ecm_contact2-1.2.2

- old
+ new

@@ -1,15 +1,21 @@ module Ecm module Contact module Generators class InstallGenerator < Rails::Generators::Base - desc "Generates the intializer" + desc 'Generates the intializer' - source_root File.expand_path('../templates', __FILE__) - - def generate_intializer - copy_file "ecm_contact.rb", "config/initializers/ecm_contact.rb" - end + source_root File.expand_path('../templates', __FILE__) + + def generate_initializer + copy_file 'initializer.rb', 'config/initializers/ecm_contact.rb' + end + + def generate_routes + inject_into_file 'config/routes.rb', before: "\nend" do + File.read(File.join(File.expand_path('../templates', __FILE__), 'routes.source')) + end + end end end end -end +end