Sha256: afd4115856c065797b763c42332c9e065010654b5fbf2c807733f7d46c6cb89f
Contents?: true
Size: 1.78 KB
Versions: 8
Compression:
Stored size: 1.78 KB
Contents
module Padrino module Generators class Mailer < Thor::Group # Add this generator to our padrino-gen Padrino::Generators.add_generator(:mailer, self) # Define the source template root def self.source_root; File.expand_path(File.dirname(__FILE__)); end def self.banner; "padrino-gen mailer [name]"; end # Include related modules include Thor::Actions include Padrino::Generators::Actions include Padrino::Generators::Components::Actions desc "Description:\n\n\tpadrino-gen mailer generates a new Padrino mailer" argument :name, :desc => "The name of your padrino mailer" class_option :root, :desc => "The root destination", :aliases => '-r', :default => ".", :type => :string class_option :destroy, :aliases => '-d', :default => false, :type => :boolean # Show help if no argv given def self.start(given_args=ARGV, config={}) given_args = ["-h"] if given_args.empty? super end def create_mailer self.destination_root = options[:root] if in_app_root? self.behavior = :revoke if options[:destroy] simple_name = name.to_s.gsub(/mailer/i, '') @mailer_basename = "#{simple_name.downcase.underscore}_mailer" @mailer_klass = "#{simple_name.downcase.camelize}Mailer" template "templates/mailer_initializer.rb.tt", destination_root("config/initializers/mailer.rb"), :skip => true template "templates/mailer.rb.tt", destination_root("app/mailers", "#{@mailer_basename}.rb") empty_directory destination_root('app/views/', @mailer_basename) else say "You are not at the root of a Padrino application! (config/boot.rb not found)" and return unless in_app_root? end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems