Class: EffectiveMentorships::Generators::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- EffectiveMentorships::Generators::InstallGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/effective_mentorships/install_generator.rb
Class Method Summary collapse
Instance Method Summary collapse
- #copy_initializer ⇒ Object
- #copy_locale ⇒ Object
- #copy_mailer_preview ⇒ Object
- #create_migration_file ⇒ Object
Class Method Details
.next_migration_number(dirname) ⇒ Object
10 11 12 13 14 15 16 |
# File 'lib/generators/effective_mentorships/install_generator.rb', line 10 def self.next_migration_number(dirname) if not ActiveRecord::Base. Time.new.utc.strftime("%Y%m%d%H%M%S") else '%.3d' % (current_migration_number(dirname) + 1) end end |
Instance Method Details
#copy_initializer ⇒ Object
18 19 20 |
# File 'lib/generators/effective_mentorships/install_generator.rb', line 18 def copy_initializer template ('../' * 3) + 'config/effective_mentorship.rb', 'config/initializers/effective_mentorship.rb' end |
#copy_locale ⇒ Object
22 23 24 |
# File 'lib/generators/effective_mentorships/install_generator.rb', line 22 def copy_locale template ('../' * 3) + 'config/locales/effective_mentorships.en.yml', 'config/locales/effective_mentorships.en.yml' end |
#copy_mailer_preview ⇒ Object
30 31 32 33 34 35 36 37 38 |
# File 'lib/generators/effective_mentorships/install_generator.rb', line 30 def copy_mailer_preview mailer_preview_path = (Rails.application.config.action_mailer.preview_path rescue nil) if mailer_preview_path.present? template 'effective_mentorships_mailer_preview.rb', File.join(mailer_preview_path, 'effective_mentorships_mailer_preview.rb') else puts "couldn't find action_mailer.preview_path. Skipping effective_mentorships_mailer_preview." end end |
#create_migration_file ⇒ Object
26 27 28 |
# File 'lib/generators/effective_mentorships/install_generator.rb', line 26 def create_migration_file migration_template ('../' * 3) + 'db/migrate/101_create_effective_mentorships.rb.erb', 'db/migrate/create_effective_mentorships.rb' end |