Sha256: d07e205afba43534938ac9f861bf6df124b23e25fcf650bc16d1e6be913d1345
Contents?: true
Size: 1.87 KB
Versions: 9
Compression:
Stored size: 1.87 KB
Contents
module EffectivePolls module Generators class InstallGenerator < Rails::Generators::Base include Rails::Generators::Migration desc 'Creates an EffectivePolls initializer in your application.' source_root File.expand_path('../../templates', __FILE__) def self.next_migration_number(dirname) if not ActiveRecord::Base.timestamped_migrations Time.new.utc.strftime("%Y%m%d%H%M%S") else '%.3d' % (current_migration_number(dirname) + 1) end end def copy_initializer template ('../' * 3) + 'config/effective_polls.rb', 'config/initializers/effective_polls.rb' end def create_migration_file @polls_table_name = ':' + EffectivePolls.polls_table_name.to_s @poll_questions_table_name = ':' + EffectivePolls.poll_questions_table_name.to_s @poll_notifications_table_name = ':' + EffectivePolls.poll_notifications_table_name.to_s @poll_question_options_table_name = ':' + EffectivePolls.poll_question_options_table_name.to_s @ballots_table_name = ':' + EffectivePolls.ballots_table_name.to_s @ballot_responses_table_name = ':' + EffectivePolls.ballot_responses_table_name.to_s @ballot_response_options_table_name = ':' + EffectivePolls.ballot_response_options_table_name.to_s migration_template ('../' * 3) + 'db/migrate/01_create_effective_polls.rb.erb', 'db/migrate/create_effective_polls.rb' end def copy_mailer_preview mailer_preview_path = (Rails.application.config.action_mailer.preview_path rescue nil) if mailer_preview_path.present? template 'effective_polls_mailer_preview.rb', File.join(mailer_preview_path, 'effective_polls_mailer_preview.rb') else puts "couldn't find action_mailer.preview_path. Skipping effective_polls_mailer_preview." end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems