2009-06-23 13:10:42 -04:00
|
|
|
require 'generators/actions'
|
2009-06-21 04:06:02 -04:00
|
|
|
|
2009-06-16 11:10:40 -04:00
|
|
|
module Rails
|
|
|
|
module Generators
|
2009-06-25 09:45:15 -04:00
|
|
|
DEFAULTS = {
|
2009-06-30 05:13:33 -04:00
|
|
|
:actions => [],
|
2009-06-27 08:03:35 -04:00
|
|
|
:fixture => true,
|
2009-06-30 05:13:33 -04:00
|
|
|
:force_plural => false,
|
2009-06-27 05:05:43 -04:00
|
|
|
:helper => true,
|
2009-06-27 09:41:29 -04:00
|
|
|
:migration => true,
|
2009-06-27 08:03:35 -04:00
|
|
|
:orm => 'active_record',
|
2009-06-28 12:28:30 -04:00
|
|
|
:resource_controller => 'controller',
|
2009-06-30 04:20:11 -04:00
|
|
|
:scaffold_controller => 'scaffold_controller',
|
2009-06-30 05:13:33 -04:00
|
|
|
:singleton => false,
|
2009-06-25 09:45:15 -04:00
|
|
|
:test_framework => 'test_unit',
|
2009-06-27 09:41:29 -04:00
|
|
|
:template_engine => 'erb',
|
|
|
|
:timestamps => true
|
2009-06-25 09:45:15 -04:00
|
|
|
}
|
|
|
|
|
2009-06-27 06:03:39 -04:00
|
|
|
ALIASES = {
|
2009-06-30 05:13:33 -04:00
|
|
|
:actions => '-a',
|
2009-06-27 08:03:35 -04:00
|
|
|
:fixture_replacement => '-r',
|
2009-06-27 06:03:39 -04:00
|
|
|
:orm => '-o',
|
2009-06-28 12:28:30 -04:00
|
|
|
:resource_controller => '-c',
|
2009-06-30 04:20:11 -04:00
|
|
|
:scaffold_controller => '-c',
|
2009-06-27 06:03:39 -04:00
|
|
|
:test_framework => '-t',
|
|
|
|
:template_engine => '-e'
|
|
|
|
}
|
|
|
|
|
2009-06-23 14:42:29 -04:00
|
|
|
class Error < Thor::Error
|
|
|
|
end
|
|
|
|
|
2009-06-16 11:10:40 -04:00
|
|
|
class Base < Thor::Group
|
|
|
|
include Rails::Generators::Actions
|
|
|
|
include Thor::Actions
|
|
|
|
|
|
|
|
# Automatically sets the source root based on the class name.
|
|
|
|
#
|
|
|
|
def self.source_root
|
2009-06-23 13:27:46 -04:00
|
|
|
@source_root ||= File.expand_path(File.join(File.dirname(__FILE__), base_name, generator_name, 'templates'))
|
2009-06-23 08:42:59 -04:00
|
|
|
end
|
|
|
|
|
2009-06-25 07:46:19 -04:00
|
|
|
# Tries to get the description from a USAGE file one folder above the source
|
|
|
|
# root otherwise uses a default description.
|
|
|
|
#
|
|
|
|
def self.desc(description=nil)
|
|
|
|
return super if description
|
2009-06-27 15:26:53 -04:00
|
|
|
usage = File.expand_path(File.join(source_root, "..", "USAGE"))
|
2009-06-25 07:46:19 -04:00
|
|
|
|
|
|
|
@desc ||= if File.exist?(usage)
|
|
|
|
File.read(usage)
|
|
|
|
else
|
|
|
|
"Description:\n Create #{base_name.humanize.downcase} files for #{generator_name} generator."
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-06-24 09:33:38 -04:00
|
|
|
# Convenience method to get the namespace from the class name. It's the
|
|
|
|
# same as Thor default except that the Generator at the end of the class
|
|
|
|
# is removed.
|
2009-06-23 08:42:59 -04:00
|
|
|
#
|
2009-06-25 07:46:19 -04:00
|
|
|
def self.namespace(name=nil)
|
|
|
|
return super if name
|
2009-06-27 05:05:43 -04:00
|
|
|
@namespace ||= super.sub(/_generator$/, '')
|
2009-06-16 11:10:40 -04:00
|
|
|
end
|
2009-06-17 13:23:42 -04:00
|
|
|
|
2009-06-26 14:26:10 -04:00
|
|
|
# Invoke a generator based on the value supplied by the user to the
|
|
|
|
# given option named "name". A class option is created when this method
|
|
|
|
# is invoked and you can set a hash to customize it, although type and
|
|
|
|
# default values cannot be given.
|
|
|
|
#
|
|
|
|
# ==== Examples
|
|
|
|
#
|
|
|
|
# class ControllerGenerator < Rails::Generators::Base
|
2009-06-27 08:27:26 -04:00
|
|
|
# hook_for :test_framework, :aliases => "-t"
|
2009-06-26 14:26:10 -04:00
|
|
|
# end
|
|
|
|
#
|
|
|
|
# The example above will create a test framework option and will invoke
|
|
|
|
# a generator based on the user supplied value.
|
|
|
|
#
|
|
|
|
# For example, if the user invoke the controller generator as:
|
|
|
|
#
|
|
|
|
# ruby script/generate controller Account --test-framework=test_unit
|
|
|
|
#
|
2009-06-27 08:03:35 -04:00
|
|
|
# The controller generator will then try to invoke the following generators:
|
|
|
|
#
|
|
|
|
# "rails:generators:test_unit", "test_unit:generators:controller", "test_unit"
|
2009-06-26 14:26:10 -04:00
|
|
|
#
|
2009-06-27 08:03:35 -04:00
|
|
|
# In this case, the "test_unit:generators:controller" is available and is
|
|
|
|
# invoked. This allows any test framework to hook into Rails as long as it
|
|
|
|
# provides any of the hooks above.
|
2009-06-26 14:26:10 -04:00
|
|
|
#
|
|
|
|
# Finally, if the user don't want to use any test framework, he can do:
|
|
|
|
#
|
|
|
|
# ruby script/generate controller Account --skip-test-framework
|
|
|
|
#
|
|
|
|
# Or similarly:
|
|
|
|
#
|
|
|
|
# ruby script/generate controller Account --no-test-framework
|
|
|
|
#
|
2009-06-29 13:56:22 -04:00
|
|
|
# ==== Custom invocations
|
|
|
|
#
|
|
|
|
# You can also supply a block to hook for to customize how the hook is
|
|
|
|
# going to be invoked. The block receives two parameters, an instance
|
|
|
|
# of the current class and the klass to be invoked.
|
|
|
|
#
|
|
|
|
# For example, in the resource generator, the controller should be invoked
|
|
|
|
# with a pluralized class name. By default, it is invoked with the same
|
|
|
|
# name as the resource generator, which is singular. To change this, we
|
|
|
|
# can give a block to customize how the controller can be invoked.
|
|
|
|
#
|
|
|
|
# hook_for :resource_controller do |instance, controller|
|
|
|
|
# instance.invoke controller, [ instance.name.pluralize ]
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
def self.hook_for(*names, &block)
|
2009-06-28 12:28:30 -04:00
|
|
|
options = names.extract_options!
|
2009-06-30 04:20:11 -04:00
|
|
|
as = options.fetch(:as, generator_name)
|
2009-06-28 12:28:30 -04:00
|
|
|
verbose = options.fetch(:verbose, :blue)
|
2009-06-26 14:26:10 -04:00
|
|
|
|
|
|
|
names.each do |name|
|
2009-06-30 05:13:33 -04:00
|
|
|
default = { :desc => "#{name.to_s.humanize} to be invoked", :banner => "NAME" }
|
|
|
|
class_option name, default.merge!(options)
|
|
|
|
|
2009-06-30 04:20:11 -04:00
|
|
|
invocations << [ name, base_name, as ]
|
2009-06-29 13:56:22 -04:00
|
|
|
invocation_blocks[name] = block if block_given?
|
2009-06-26 14:26:10 -04:00
|
|
|
|
2009-07-01 06:14:04 -04:00
|
|
|
# hook_for :test_framework
|
|
|
|
#
|
|
|
|
# ==== Generates
|
|
|
|
#
|
|
|
|
# def invoke_for_test_framework
|
|
|
|
# return unless options[:test_framework]
|
|
|
|
#
|
|
|
|
# klass = Rails::Generators.find_by_namespace(options[:test_framework],
|
|
|
|
# "rails", "model")
|
|
|
|
#
|
|
|
|
# if klass
|
|
|
|
# say_status :invoke, options[:test_framework], :blue
|
|
|
|
# invoke_class_with_block :test_framework, klass
|
|
|
|
# else
|
|
|
|
# say "Could not find and invoke '#{options[:test_framework]}'"
|
|
|
|
# end
|
|
|
|
# end
|
2009-06-26 14:26:10 -04:00
|
|
|
class_eval <<-METHOD, __FILE__, __LINE__
|
2009-06-27 07:03:07 -04:00
|
|
|
def invoke_for_#{name}
|
2009-06-26 14:26:10 -04:00
|
|
|
return unless options[#{name.inspect}]
|
|
|
|
|
|
|
|
klass = Rails::Generators.find_by_namespace(options[#{name.inspect}],
|
2009-06-30 04:20:11 -04:00
|
|
|
#{base_name.inspect}, #{as.inspect})
|
2009-06-26 14:26:10 -04:00
|
|
|
|
|
|
|
if klass
|
2009-06-27 09:20:35 -04:00
|
|
|
say_status :invoke, options[#{name.inspect}], #{verbose.inspect}
|
2009-06-29 13:56:22 -04:00
|
|
|
invoke_class_with_block #{name.inspect}, klass
|
2009-06-26 14:26:10 -04:00
|
|
|
else
|
2009-06-27 08:03:35 -04:00
|
|
|
say "Could not find and invoke '\#{options[#{name.inspect}]}'."
|
2009-06-26 14:26:10 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
METHOD
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Invoke a generator with the given name if the user requires it. The
|
2009-06-27 08:27:26 -04:00
|
|
|
# difference to hook_for is that the class option here is boolean
|
2009-06-26 14:26:10 -04:00
|
|
|
# and the generator invoked is not based on user input.
|
|
|
|
#
|
|
|
|
# A class option is created when this method is invoked and you can set
|
|
|
|
# a hash to customize it, although type and default values cannot be
|
|
|
|
# given.
|
|
|
|
#
|
|
|
|
# ==== Examples
|
|
|
|
#
|
|
|
|
# class ControllerGenerator < Rails::Generators::Base
|
|
|
|
# invoke_if :webrat, :aliases => "-w"
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# The example above will create a helper option and will be invoked
|
|
|
|
# when the user requires so:
|
|
|
|
#
|
|
|
|
# ruby script/generate controller Account --webrat
|
|
|
|
#
|
|
|
|
# The controller generator will then try to invoke the following generators:
|
|
|
|
#
|
|
|
|
# "rails:generators:webrat", "webrat:generators:controller", "webrat"
|
|
|
|
#
|
2009-06-29 13:56:22 -04:00
|
|
|
# ==== Custom invocations
|
|
|
|
#
|
|
|
|
# This method accepts custom invocations as in hook_for. Check hook_for
|
|
|
|
# for usage and examples.
|
|
|
|
#
|
|
|
|
def self.invoke_if(*names, &block)
|
2009-06-30 05:13:33 -04:00
|
|
|
options = names.extract_options!.merge(:type => :boolean)
|
2009-06-30 04:20:11 -04:00
|
|
|
as = options.fetch(:as, generator_name)
|
2009-06-28 05:56:44 -04:00
|
|
|
verbose = options.fetch(:verbose, :blue)
|
2009-06-26 14:26:10 -04:00
|
|
|
|
|
|
|
names.each do |name|
|
2009-06-30 05:13:33 -04:00
|
|
|
class_option name, options
|
|
|
|
|
2009-06-30 04:20:11 -04:00
|
|
|
invocations << [ name, base_name, as ]
|
2009-06-29 13:56:22 -04:00
|
|
|
invocation_blocks[name] = block if block_given?
|
2009-06-28 12:28:30 -04:00
|
|
|
|
2009-07-01 06:14:04 -04:00
|
|
|
# invoke_if :helper
|
|
|
|
#
|
|
|
|
# ==== Generates
|
|
|
|
#
|
|
|
|
# def invoke_if_helper
|
|
|
|
# return unless options[:helper]
|
|
|
|
#
|
|
|
|
# klass = Rails::Generators.find_by_namespace(:helper,
|
|
|
|
# "rails", "controller")
|
|
|
|
#
|
|
|
|
# if klass
|
|
|
|
# say_status :invoke, :helper, :blue
|
|
|
|
# invoke_class_with_block :helper, klass
|
|
|
|
# else
|
|
|
|
# say "Could not find and invoke 'helper'"
|
|
|
|
# end
|
|
|
|
# end
|
2009-06-26 14:26:10 -04:00
|
|
|
class_eval <<-METHOD, __FILE__, __LINE__
|
2009-06-27 07:03:07 -04:00
|
|
|
def invoke_if_#{name}
|
2009-06-26 14:26:10 -04:00
|
|
|
return unless options[#{name.inspect}]
|
|
|
|
|
|
|
|
klass = Rails::Generators.find_by_namespace(#{name.inspect},
|
2009-06-30 04:20:11 -04:00
|
|
|
#{base_name.inspect}, #{as.inspect})
|
2009-06-26 14:26:10 -04:00
|
|
|
|
|
|
|
if klass
|
2009-06-27 09:20:35 -04:00
|
|
|
say_status :invoke, #{name.inspect}, #{verbose.inspect}
|
2009-06-29 13:56:22 -04:00
|
|
|
invoke_class_with_block #{name.inspect}, klass
|
2009-06-26 14:26:10 -04:00
|
|
|
else
|
2009-06-27 08:03:35 -04:00
|
|
|
say "Could not find and invoke '#{name}'."
|
2009-06-26 14:26:10 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
METHOD
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-06-30 02:49:25 -04:00
|
|
|
# Remove a previously added hook.
|
|
|
|
#
|
|
|
|
# ==== Examples
|
|
|
|
#
|
|
|
|
# remove_hook_for :orm
|
|
|
|
#
|
|
|
|
def self.remove_hook_for(*names)
|
|
|
|
names.each do |name|
|
|
|
|
remove_class_option name
|
|
|
|
remove_task name
|
|
|
|
invocations.delete_if { |i| i[0] == name }
|
|
|
|
invocation_blocks.delete(name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-06-30 05:13:33 -04:00
|
|
|
# Make class option aware of DEFAULTS and ALIASES.
|
|
|
|
#
|
|
|
|
def self.class_option(name, options) #:nodoc:
|
|
|
|
options[:desc] = "Indicates when to generate #{name.to_s.humanize.downcase}" unless options.key?(:desc)
|
|
|
|
options[:aliases] = ALIASES[name] unless options.key?(:aliases)
|
|
|
|
options[:default] = DEFAULTS[name] unless options.key?(:default)
|
|
|
|
super(name, options)
|
|
|
|
end
|
|
|
|
|
2009-06-23 13:27:46 -04:00
|
|
|
protected
|
2009-06-21 03:34:32 -04:00
|
|
|
|
2009-06-29 13:56:22 -04:00
|
|
|
# This is the common method that both hook_for and invoke_if use to
|
|
|
|
# invoke a class. It searches for a block in the invocation blocks
|
|
|
|
# in case the user wants to customize how the class is invoked.
|
|
|
|
#
|
|
|
|
def invoke_class_with_block(name, klass) #:nodoc:
|
|
|
|
if block = self.class.invocation_blocks[name]
|
|
|
|
block.call(self, klass)
|
|
|
|
else
|
|
|
|
invoke klass
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-06-26 04:40:02 -04:00
|
|
|
# Check whether the given class names are already taken by user
|
|
|
|
# application or Ruby on Rails.
|
2009-06-25 05:56:18 -04:00
|
|
|
#
|
|
|
|
def class_collisions(*class_names)
|
|
|
|
return unless behavior == :invoke
|
|
|
|
|
|
|
|
class_names.flatten.each do |class_name|
|
|
|
|
class_name = class_name.to_s
|
|
|
|
next if class_name.strip.empty?
|
|
|
|
|
|
|
|
# Split the class from its module nesting
|
|
|
|
nesting = class_name.split('::')
|
|
|
|
last_name = nesting.pop
|
|
|
|
|
|
|
|
# Hack to limit const_defined? to non-inherited on 1.9
|
|
|
|
extra = []
|
|
|
|
extra << false unless Object.method(:const_defined?).arity == 1
|
|
|
|
|
|
|
|
# Extract the last Module in the nesting
|
|
|
|
last = nesting.inject(Object) do |last, nest|
|
|
|
|
break unless last.const_defined?(nest, *extra)
|
|
|
|
last.const_get(nest)
|
|
|
|
end
|
|
|
|
|
|
|
|
if last && last.const_defined?(last_name.camelize, *extra)
|
|
|
|
raise Error, "The name '#{class_name}' is either already used in your application " <<
|
|
|
|
"or reserved by Ruby on Rails. Please choose an alternative and run " <<
|
|
|
|
"this generator again."
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-06-23 13:27:46 -04:00
|
|
|
# Use Rails default banner.
|
|
|
|
#
|
|
|
|
def self.banner
|
|
|
|
"#{$0} #{generator_name} #{self.arguments.map(&:usage).join(' ')} [options]"
|
|
|
|
end
|
2009-06-23 08:42:59 -04:00
|
|
|
|
2009-06-24 09:33:38 -04:00
|
|
|
# Sets the base_name taking into account the current class namespace.
|
2009-06-23 13:27:46 -04:00
|
|
|
#
|
2009-06-25 07:46:19 -04:00
|
|
|
def self.base_name
|
2009-06-24 09:33:38 -04:00
|
|
|
@base_name ||= self.name.split('::').first.underscore
|
2009-06-23 08:42:59 -04:00
|
|
|
end
|
2009-06-21 03:34:32 -04:00
|
|
|
|
2009-06-23 13:27:46 -04:00
|
|
|
# Removes the namespaces and get the generator name. For example,
|
|
|
|
# Rails::Generators::MetalGenerator will return "metal" as generator name.
|
|
|
|
#
|
|
|
|
def self.generator_name
|
|
|
|
@generator_name ||= begin
|
2009-06-23 14:42:29 -04:00
|
|
|
klass_name = self.name.split('::').last
|
2009-06-27 05:05:43 -04:00
|
|
|
klass_name.sub!(/Generator$/, '')
|
2009-06-23 13:27:46 -04:00
|
|
|
klass_name.underscore
|
|
|
|
end
|
|
|
|
end
|
2009-06-17 17:07:19 -04:00
|
|
|
|
2009-06-27 15:26:53 -04:00
|
|
|
# Stores invocations for this class merging with superclass values.
|
|
|
|
#
|
|
|
|
def self.invocations #:nodoc:
|
|
|
|
@invocations ||= from_superclass(:invocations, [])
|
|
|
|
end
|
|
|
|
|
2009-06-29 13:56:22 -04:00
|
|
|
# Stores invocation blocks used on hook_for and invoke_if.
|
|
|
|
#
|
|
|
|
def self.invocation_blocks #:nodoc:
|
|
|
|
@invocation_blocks ||= from_superclass(:invocation_blocks, {})
|
|
|
|
end
|
|
|
|
|
2009-06-27 15:26:53 -04:00
|
|
|
# Overwrite class options help to allow invoked generators options to be
|
2009-06-30 03:29:26 -04:00
|
|
|
# shown when invoking a generator. Only first and second level options
|
|
|
|
# are shown, for instance, if a generator invokes an ORM that invokes
|
|
|
|
# a test framework, both options are shown, but if a third one is
|
|
|
|
# involved, those options do not appear.
|
2009-06-27 15:26:53 -04:00
|
|
|
#
|
|
|
|
def self.class_options_help(shell, ungrouped_name=nil, extra_group=nil)
|
2009-06-30 03:29:26 -04:00
|
|
|
group_options = Thor::CoreExt::OrderedHash.new
|
2009-06-27 15:26:53 -04:00
|
|
|
|
2009-06-30 03:29:26 -04:00
|
|
|
get_options_from_invocations(group_options, class_options) do |klass|
|
|
|
|
klass.send(:get_options_from_invocations, group_options, class_options)
|
|
|
|
end
|
|
|
|
|
|
|
|
group_options.merge!(extra_group) if extra_group
|
|
|
|
super(shell, ungrouped_name, group_options)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Get invocations array and merge options from invocations. Those
|
|
|
|
# options are added to group_options hash. Options that already exists
|
|
|
|
# in base_options are not added twice.
|
|
|
|
#
|
|
|
|
def self.get_options_from_invocations(group_options, base_options)
|
2009-06-30 05:13:33 -04:00
|
|
|
invocations.each do |args|
|
2009-06-28 12:28:30 -04:00
|
|
|
name, base, generator = args
|
2009-06-27 15:26:53 -04:00
|
|
|
option = class_options[name]
|
|
|
|
|
|
|
|
klass_name = option.type == :boolean ? name : option.default
|
|
|
|
next unless klass_name
|
|
|
|
|
2009-06-28 12:28:30 -04:00
|
|
|
klass = Rails::Generators.find_by_namespace(klass_name, base, generator)
|
2009-06-27 15:26:53 -04:00
|
|
|
next unless klass
|
|
|
|
|
|
|
|
human_name = klass_name.to_s.classify
|
2009-06-30 03:29:26 -04:00
|
|
|
group_options[human_name] ||= []
|
2009-06-27 15:26:53 -04:00
|
|
|
|
2009-06-30 03:29:26 -04:00
|
|
|
group_options[human_name] += klass.class_options.values.select do |option|
|
|
|
|
base_options[option.name.to_sym].nil? && option.group.nil? &&
|
2009-06-30 05:13:33 -04:00
|
|
|
!group_options.values.flatten.any? { |i| i.name == option.name }
|
2009-06-27 15:26:53 -04:00
|
|
|
end
|
|
|
|
|
2009-06-30 03:29:26 -04:00
|
|
|
yield klass if block_given?
|
|
|
|
end
|
2009-06-27 15:26:53 -04:00
|
|
|
end
|
|
|
|
|
2009-06-23 13:27:46 -04:00
|
|
|
# Small macro to add ruby as an option to the generator with proper
|
|
|
|
# default value plus an instance helper method called shebang.
|
|
|
|
#
|
|
|
|
def self.add_shebang_option!
|
|
|
|
require 'rbconfig'
|
|
|
|
default = File.join(Config::CONFIG['bindir'], Config::CONFIG['ruby_install_name'])
|
2009-06-17 17:07:19 -04:00
|
|
|
|
2009-06-23 13:27:46 -04:00
|
|
|
class_option :ruby, :type => :string, :aliases => "-r", :default => default,
|
2009-06-24 09:33:38 -04:00
|
|
|
:desc => "Path to the Ruby binary of your choice", :banner => "PATH"
|
2009-06-23 13:27:46 -04:00
|
|
|
|
2009-06-27 15:26:53 -04:00
|
|
|
class_eval <<-METHOD, __FILE__, __LINE__
|
|
|
|
protected
|
|
|
|
def shebang
|
|
|
|
"#!\#{options[:ruby] || "/usr/bin/env ruby"}"
|
2009-06-23 13:27:46 -04:00
|
|
|
end
|
2009-06-27 15:26:53 -04:00
|
|
|
METHOD
|
2009-06-17 17:07:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2009-06-16 11:10:40 -04:00
|
|
|
end
|
|
|
|
end
|