From b04618e707a73d2bcd617fd82e54e736736158b1 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 15 Feb 2005 19:35:13 +0000 Subject: Fixed generated functional test for nested controllers has wrong paths #635 git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@631 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/lib/rails_generator/options.rb | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'railties/lib/rails_generator/options.rb') diff --git a/railties/lib/rails_generator/options.rb b/railties/lib/rails_generator/options.rb index 287605c852..4374249314 100644 --- a/railties/lib/rails_generator/options.rb +++ b/railties/lib/rails_generator/options.rb @@ -2,10 +2,6 @@ require 'optparse' module Rails module Generator - # Implement add_options! to add your options to the parser: - # def add_options!(opt) - # opt.on('-v', '--verbose') { |value| options[:verbose] = value } - # end module Options def self.append_features(base) super @@ -88,7 +84,7 @@ module Rails @option_parser = OptionParser.new do |opt| opt.banner = banner - add_options!(opt) if respond_to?(:add_options!) + add_options!(opt) add_general_options!(opt) opt.parse!(args) end @@ -113,6 +109,13 @@ module Rails "Usage: #{$0} [options]" end + # Override to add your options to the parser: + # def add_options!(opt) + # opt.on('-v', '--verbose') { |value| options[:verbose] = value } + # end + def add_options!(opt) + end + # Adds general options like -h and --quiet. Usually don't override. def add_general_options!(opt) opt.separator '' -- cgit v1.2.3