Class methods for Thor generators to support the generators and component choices.
Returns the list of available choices for the given component (including none).
@param [Symbol] component
The type of the component module.
@return [Array<Symbol>] Array of component choices.
@example
available_choices_for :test => [:shoulda, :bacon, :minitest]
# File lib/padrino-gen/generators/actions.rb, line 639 def available_choices_for(component) @available_choices[component] + [:none] end
Defines a class option to allow a component to be chosen and add to component type list. Also builds the available_choices hash of which component choices are supported.
@param [Symbol] name
Name of component.
@param [String] caption
Description of the component.
@param [Hash] options
Additional parameters for component choice.
@example
component_option :test, "Testing framework", :aliases => '-t', :choices => [:bacon, :shoulda]
# File lib/padrino-gen/generators/actions.rb, line 582 def component_option(name, caption, options = {}) (@component_types ||= []) << name # TODO use ordered hash and combine with choices below (@available_choices ||= Hash.new)[name] = options[:choices] description = "The #{caption} component (#{options[:choices].join(', ')}, none)" class_option name, :default => options[:default] || options[:choices].first, :aliases => options[:aliases], :desc => description end
Returns the compiled list of component types which can be specified.
# File lib/padrino-gen/generators/actions.rb, line 623 def component_types @component_types end
Definitions for the available customizable components.
# File lib/padrino-gen/generators/actions.rb, line 592 def defines_component_options(options = {}) [ [ :orm, 'database engine', { :aliases => '-d', :default => :none }], [ :test, 'testing framework', { :aliases => '-t', :default => :none }], [ :mock, 'mocking library', { :aliases => '-m', :default => :none }], [ :script, 'javascript library', { :aliases => '-s', :default => :none }], [ :renderer, 'template engine', { :aliases => '-e', :default => :none }], [ :stylesheet, 'stylesheet engine', { :aliases => '-c', :default => :none }] ].each do |name, caption, opts| opts[:default] = '' if options[:default] == false component_option name, caption, opts.merge(:choices => Dir["#{File.dirname(__FILE__)}/components/#{name.to_s.pluralize}/*.rb"].map{|lib| File.basename(lib, '.rb').to_sym}) end end
Tells Padrino that for this Thor::Group it is a necessary task to run.
# File lib/padrino-gen/generators/actions.rb, line 609 def require_arguments! @require_arguments = true end
Returns true if we need an arguments for our Thor::Group.
# File lib/padrino-gen/generators/actions.rb, line 616 def require_arguments? @require_arguments end