erails 2.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (193) hide show
  1. data/CHANGELOG +3 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README +309 -0
  4. data/Rakefile +339 -0
  5. data/bin/about +4 -0
  6. data/bin/console +3 -0
  7. data/bin/dbconsole +3 -0
  8. data/bin/destroy +3 -0
  9. data/bin/erails +19 -0
  10. data/bin/generate +3 -0
  11. data/bin/performance/benchmarker +3 -0
  12. data/bin/performance/profiler +3 -0
  13. data/bin/performance/request +3 -0
  14. data/bin/plugin +3 -0
  15. data/bin/process/inspector +3 -0
  16. data/bin/process/reaper +3 -0
  17. data/bin/process/spawner +3 -0
  18. data/bin/runner +3 -0
  19. data/bin/server +3 -0
  20. data/builtin/rails_info/rails/info.rb +125 -0
  21. data/builtin/rails_info/rails/info_controller.rb +9 -0
  22. data/builtin/rails_info/rails/info_helper.rb +2 -0
  23. data/builtin/rails_info/rails_info_controller.rb +2 -0
  24. data/configs/apache.conf +40 -0
  25. data/configs/databases/frontbase.yml +28 -0
  26. data/configs/databases/mysql.yml +54 -0
  27. data/configs/databases/oracle.yml +39 -0
  28. data/configs/databases/postgresql.yml +48 -0
  29. data/configs/databases/sqlite2.yml +16 -0
  30. data/configs/databases/sqlite3.yml +19 -0
  31. data/configs/empty.log +0 -0
  32. data/configs/initializers/inflections.rb +10 -0
  33. data/configs/initializers/mime_types.rb +5 -0
  34. data/configs/initializers/new_rails_defaults.rb +17 -0
  35. data/configs/lighttpd.conf +54 -0
  36. data/configs/routes.rb +43 -0
  37. data/dispatches/dispatch.fcgi +24 -0
  38. data/dispatches/dispatch.rb +10 -0
  39. data/dispatches/gateway.cgi +97 -0
  40. data/doc/README_FOR_APP +2 -0
  41. data/environments/boot.rb +109 -0
  42. data/environments/development.rb +16 -0
  43. data/environments/environment.rb +71 -0
  44. data/environments/production.rb +22 -0
  45. data/environments/test.rb +22 -0
  46. data/fresh_rakefile +10 -0
  47. data/helpers/application.rb +15 -0
  48. data/helpers/application_helper.rb +3 -0
  49. data/helpers/test_helper.rb +38 -0
  50. data/html/404.html +30 -0
  51. data/html/422.html +30 -0
  52. data/html/500.html +30 -0
  53. data/html/favicon.ico +0 -0
  54. data/html/images/rails.png +0 -0
  55. data/html/index.html +274 -0
  56. data/html/javascripts/application.js +2 -0
  57. data/html/robots.txt +5 -0
  58. data/lib/code_statistics.rb +107 -0
  59. data/lib/commands/about.rb +3 -0
  60. data/lib/commands/console.rb +32 -0
  61. data/lib/commands/dbconsole.rb +67 -0
  62. data/lib/commands/destroy.rb +6 -0
  63. data/lib/commands/generate.rb +6 -0
  64. data/lib/commands/ncgi/listener +86 -0
  65. data/lib/commands/ncgi/tracker +69 -0
  66. data/lib/commands/performance/benchmarker.rb +24 -0
  67. data/lib/commands/performance/profiler.rb +50 -0
  68. data/lib/commands/performance/request.rb +6 -0
  69. data/lib/commands/plugin.rb +950 -0
  70. data/lib/commands/process/inspector.rb +68 -0
  71. data/lib/commands/process/reaper.rb +149 -0
  72. data/lib/commands/process/spawner.rb +219 -0
  73. data/lib/commands/process/spinner.rb +57 -0
  74. data/lib/commands/runner.rb +48 -0
  75. data/lib/commands/server.rb +39 -0
  76. data/lib/commands/servers/base.rb +31 -0
  77. data/lib/commands/servers/lighttpd.rb +94 -0
  78. data/lib/commands/servers/mongrel.rb +69 -0
  79. data/lib/commands/servers/new_mongrel.rb +16 -0
  80. data/lib/commands/servers/webrick.rb +66 -0
  81. data/lib/commands/update.rb +4 -0
  82. data/lib/commands.rb +17 -0
  83. data/lib/console_app.rb +30 -0
  84. data/lib/console_sandbox.rb +6 -0
  85. data/lib/console_with_helpers.rb +26 -0
  86. data/lib/dispatcher.rb +24 -0
  87. data/lib/fcgi_handler.rb +239 -0
  88. data/lib/initializer.rb +926 -0
  89. data/lib/rails/gem_builder.rb +21 -0
  90. data/lib/rails/gem_dependency.rb +129 -0
  91. data/lib/rails/mongrel_server/commands.rb +342 -0
  92. data/lib/rails/mongrel_server/handler.rb +55 -0
  93. data/lib/rails/plugin/loader.rb +152 -0
  94. data/lib/rails/plugin/locator.rb +100 -0
  95. data/lib/rails/plugin.rb +116 -0
  96. data/lib/rails/version.rb +9 -0
  97. data/lib/rails_generator/base.rb +263 -0
  98. data/lib/rails_generator/commands.rb +622 -0
  99. data/lib/rails_generator/generated_attribute.rb +42 -0
  100. data/lib/rails_generator/generators/applications/app/USAGE +9 -0
  101. data/lib/rails_generator/generators/applications/app/app_generator.rb +174 -0
  102. data/lib/rails_generator/generators/components/controller/USAGE +29 -0
  103. data/lib/rails_generator/generators/components/controller/controller_generator.rb +37 -0
  104. data/lib/rails_generator/generators/components/controller/templates/controller.rb +7 -0
  105. data/lib/rails_generator/generators/components/controller/templates/functional_test.rb +8 -0
  106. data/lib/rails_generator/generators/components/controller/templates/helper.rb +2 -0
  107. data/lib/rails_generator/generators/components/controller/templates/view.html.erb +2 -0
  108. data/lib/rails_generator/generators/components/integration_test/USAGE +8 -0
  109. data/lib/rails_generator/generators/components/integration_test/integration_test_generator.rb +16 -0
  110. data/lib/rails_generator/generators/components/integration_test/templates/integration_test.rb +10 -0
  111. data/lib/rails_generator/generators/components/mailer/USAGE +16 -0
  112. data/lib/rails_generator/generators/components/mailer/mailer_generator.rb +30 -0
  113. data/lib/rails_generator/generators/components/mailer/templates/fixture.erb +3 -0
  114. data/lib/rails_generator/generators/components/mailer/templates/fixture.rhtml +0 -0
  115. data/lib/rails_generator/generators/components/mailer/templates/mailer.rb +15 -0
  116. data/lib/rails_generator/generators/components/mailer/templates/unit_test.rb +21 -0
  117. data/lib/rails_generator/generators/components/mailer/templates/view.erb +3 -0
  118. data/lib/rails_generator/generators/components/mailer/templates/view.rhtml +0 -0
  119. data/lib/rails_generator/generators/components/migration/USAGE +29 -0
  120. data/lib/rails_generator/generators/components/migration/migration_generator.rb +20 -0
  121. data/lib/rails_generator/generators/components/migration/templates/migration.rb +11 -0
  122. data/lib/rails_generator/generators/components/model/USAGE +27 -0
  123. data/lib/rails_generator/generators/components/model/model_generator.rb +45 -0
  124. data/lib/rails_generator/generators/components/model/templates/fixtures.yml +19 -0
  125. data/lib/rails_generator/generators/components/model/templates/migration.rb +16 -0
  126. data/lib/rails_generator/generators/components/model/templates/model.rb +2 -0
  127. data/lib/rails_generator/generators/components/model/templates/unit_test.rb +8 -0
  128. data/lib/rails_generator/generators/components/observer/USAGE +13 -0
  129. data/lib/rails_generator/generators/components/observer/observer_generator.rb +16 -0
  130. data/lib/rails_generator/generators/components/observer/templates/observer.rb +2 -0
  131. data/lib/rails_generator/generators/components/observer/templates/unit_test.rb +8 -0
  132. data/lib/rails_generator/generators/components/plugin/USAGE +25 -0
  133. data/lib/rails_generator/generators/components/plugin/plugin_generator.rb +39 -0
  134. data/lib/rails_generator/generators/components/plugin/templates/MIT-LICENSE +20 -0
  135. data/lib/rails_generator/generators/components/plugin/templates/README +13 -0
  136. data/lib/rails_generator/generators/components/plugin/templates/Rakefile +22 -0
  137. data/lib/rails_generator/generators/components/plugin/templates/USAGE +8 -0
  138. data/lib/rails_generator/generators/components/plugin/templates/generator.rb +8 -0
  139. data/lib/rails_generator/generators/components/plugin/templates/init.rb +1 -0
  140. data/lib/rails_generator/generators/components/plugin/templates/install.rb +1 -0
  141. data/lib/rails_generator/generators/components/plugin/templates/plugin.rb +1 -0
  142. data/lib/rails_generator/generators/components/plugin/templates/tasks.rake +4 -0
  143. data/lib/rails_generator/generators/components/plugin/templates/uninstall.rb +1 -0
  144. data/lib/rails_generator/generators/components/plugin/templates/unit_test.rb +8 -0
  145. data/lib/rails_generator/generators/components/resource/USAGE +23 -0
  146. data/lib/rails_generator/generators/components/resource/resource_generator.rb +74 -0
  147. data/lib/rails_generator/generators/components/resource/templates/controller.rb +2 -0
  148. data/lib/rails_generator/generators/components/resource/templates/functional_test.rb +8 -0
  149. data/lib/rails_generator/generators/components/resource/templates/helper.rb +2 -0
  150. data/lib/rails_generator/generators/components/scaffold/USAGE +25 -0
  151. data/lib/rails_generator/generators/components/scaffold/scaffold_generator.rb +93 -0
  152. data/lib/rails_generator/generators/components/scaffold/templates/controller.rb +85 -0
  153. data/lib/rails_generator/generators/components/scaffold/templates/functional_test.rb +45 -0
  154. data/lib/rails_generator/generators/components/scaffold/templates/helper.rb +2 -0
  155. data/lib/rails_generator/generators/components/scaffold/templates/layout.html.erb +17 -0
  156. data/lib/rails_generator/generators/components/scaffold/templates/style.css +54 -0
  157. data/lib/rails_generator/generators/components/scaffold/templates/view_edit.html.erb +18 -0
  158. data/lib/rails_generator/generators/components/scaffold/templates/view_index.html.erb +24 -0
  159. data/lib/rails_generator/generators/components/scaffold/templates/view_new.html.erb +17 -0
  160. data/lib/rails_generator/generators/components/scaffold/templates/view_show.html.erb +10 -0
  161. data/lib/rails_generator/generators/components/session_migration/USAGE +10 -0
  162. data/lib/rails_generator/generators/components/session_migration/session_migration_generator.rb +18 -0
  163. data/lib/rails_generator/generators/components/session_migration/templates/migration.rb +16 -0
  164. data/lib/rails_generator/lookup.rb +249 -0
  165. data/lib/rails_generator/manifest.rb +53 -0
  166. data/lib/rails_generator/options.rb +150 -0
  167. data/lib/rails_generator/scripts/destroy.rb +30 -0
  168. data/lib/rails_generator/scripts/generate.rb +7 -0
  169. data/lib/rails_generator/scripts/update.rb +12 -0
  170. data/lib/rails_generator/scripts.rb +89 -0
  171. data/lib/rails_generator/secret_key_generator.rb +164 -0
  172. data/lib/rails_generator/simple_logger.rb +46 -0
  173. data/lib/rails_generator/spec.rb +44 -0
  174. data/lib/rails_generator.rb +43 -0
  175. data/lib/railties_path.rb +1 -0
  176. data/lib/ruby_version_check.rb +17 -0
  177. data/lib/rubyprof_ext.rb +35 -0
  178. data/lib/source_annotation_extractor.rb +102 -0
  179. data/lib/tasks/annotations.rake +23 -0
  180. data/lib/tasks/databases.rake +389 -0
  181. data/lib/tasks/documentation.rake +80 -0
  182. data/lib/tasks/framework.rake +105 -0
  183. data/lib/tasks/gems.rake +64 -0
  184. data/lib/tasks/log.rake +9 -0
  185. data/lib/tasks/misc.rake +57 -0
  186. data/lib/tasks/rails.rb +8 -0
  187. data/lib/tasks/routes.rake +17 -0
  188. data/lib/tasks/statistics.rake +18 -0
  189. data/lib/tasks/testing.rake +118 -0
  190. data/lib/tasks/tmp.rake +37 -0
  191. data/lib/test_help.rb +28 -0
  192. data/lib/webrick_server.rb +165 -0
  193. metadata +356 -0
@@ -0,0 +1,100 @@
1
+ module Rails
2
+ class Plugin
3
+
4
+ # The Plugin::Locator class should be subclasses to provide custom plugin-finding
5
+ # abilities to Rails (i.e. loading plugins from Gems, etc). Each subclass should implement
6
+ # the <tt>located_plugins</tt> method, which return an array of Plugin objects that have been found.
7
+ class Locator
8
+ include Enumerable
9
+
10
+ attr_reader :initializer
11
+
12
+ def initialize(initializer)
13
+ @initializer = initializer
14
+ end
15
+
16
+ # This method should return all the plugins which this Plugin::Locator can find
17
+ # These will then be used by the current Plugin::Loader, which is responsible for actually
18
+ # loading the plugins themselves
19
+ def plugins
20
+ raise "The `plugins' method must be defined by concrete subclasses of #{self.class}"
21
+ end
22
+
23
+ def each(&block)
24
+ plugins.each(&block)
25
+ end
26
+
27
+ def plugin_names
28
+ plugins.map(&:name)
29
+ end
30
+ end
31
+
32
+ # The Rails::Plugin::FileSystemLocator will try to locate plugins by examining the directories
33
+ # the the paths given in configuration.plugin_paths. Any plugins that can be found are returned
34
+ # in a list.
35
+ #
36
+ # The criteria for a valid plugin in this case is found in Rails::Plugin#valid?, although
37
+ # other subclasses of Rails::Plugin::Locator can of course use different conditions.
38
+ class FileSystemLocator < Locator
39
+
40
+ # Returns all the plugins which can be loaded in the filesystem, under the paths given
41
+ # by configuration.plugin_paths.
42
+ def plugins
43
+ initializer.configuration.plugin_paths.flatten.inject([]) do |plugins, path|
44
+ plugins.concat locate_plugins_under(path)
45
+ plugins
46
+ end.flatten
47
+ end
48
+
49
+ private
50
+
51
+ # Attempts to create a plugin from the given path. If the created plugin is valid?
52
+ # (see Rails::Plugin#valid?) then the plugin instance is returned; otherwise nil.
53
+ def create_plugin(path)
54
+ plugin = Rails::Plugin.new(path)
55
+ plugin.valid? ? plugin : nil
56
+ end
57
+
58
+ # This starts at the base path looking for valid plugins (see Rails::Plugin#valid?).
59
+ # Since plugins can be nested arbitrarily deep within an unspecified number of intermediary
60
+ # directories, this method runs recursively until it finds a plugin directory, e.g.
61
+ #
62
+ # locate_plugins_under('vendor/plugins/acts/acts_as_chunky_bacon')
63
+ # => <Rails::Plugin name: 'acts_as_chunky_bacon' ... >
64
+ #
65
+ def locate_plugins_under(base_path)
66
+ Dir.glob(File.join(base_path, '*')).sort.inject([]) do |plugins, path|
67
+ if plugin = create_plugin(path)
68
+ plugins << plugin
69
+ elsif File.directory?(path)
70
+ plugins.concat locate_plugins_under(path)
71
+ end
72
+ plugins
73
+ end
74
+ end
75
+ end
76
+
77
+ # The GemLocator scans all the loaded RubyGems, looking for gems with
78
+ # a <tt>rails/init.rb</tt> file.
79
+ class GemLocator < Locator
80
+ def plugins
81
+ gem_index = initializer.configuration.gems.inject({}) { |memo, gem| memo.update gem.specification => gem }
82
+ specs = gem_index.keys
83
+ specs += Gem.loaded_specs.values.select do |spec|
84
+ spec.loaded_from && # prune stubs
85
+ File.exist?(File.join(spec.full_gem_path, "rails", "init.rb"))
86
+ end
87
+ specs.compact!
88
+
89
+ require "rubygems/dependency_list"
90
+
91
+ deps = Gem::DependencyList.new
92
+ deps.add(*specs) unless specs.empty?
93
+
94
+ deps.dependency_order.collect do |spec|
95
+ Rails::GemPlugin.new(spec, gem_index[spec])
96
+ end
97
+ end
98
+ end
99
+ end
100
+ end
@@ -0,0 +1,116 @@
1
+ module Rails
2
+ # The Plugin class should be an object which provides the following methods:
3
+ #
4
+ # * +name+ - Used during initialisation to order the plugin (based on name and
5
+ # the contents of <tt>config.plugins</tt>).
6
+ # * +valid?+ - Returns true if this plugin can be loaded.
7
+ # * +load_paths+ - Each path within the returned array will be added to the <tt>$LOAD_PATH</tt>.
8
+ # * +load+ - Finally 'load' the plugin.
9
+ #
10
+ # These methods are expected by the Rails::Plugin::Locator and Rails::Plugin::Loader classes.
11
+ # The default implementation returns the <tt>lib</tt> directory as its <tt>load_paths</tt>,
12
+ # and evaluates <tt>init.rb</tt> when <tt>load</tt> is called.
13
+ #
14
+ # You can also inspect the about.yml data programmatically:
15
+ #
16
+ # plugin = Rails::Plugin.new(path_to_my_plugin)
17
+ # plugin.about["author"] # => "James Adam"
18
+ # plugin.about["url"] # => "http://interblah.net"
19
+ class Plugin
20
+ include Comparable
21
+
22
+ attr_reader :directory, :name
23
+
24
+ def initialize(directory)
25
+ @directory = directory
26
+ @name = File.basename(@directory) rescue nil
27
+ @loaded = false
28
+ end
29
+
30
+ def valid?
31
+ File.directory?(directory) && (has_lib_directory? || has_init_file?)
32
+ end
33
+
34
+ # Returns a list of paths this plugin wishes to make available in <tt>$LOAD_PATH</tt>.
35
+ def load_paths
36
+ report_nonexistant_or_empty_plugin! unless valid?
37
+ has_lib_directory? ? [lib_path] : []
38
+ end
39
+
40
+ # Evaluates a plugin's init.rb file.
41
+ def load(initializer)
42
+ return if loaded?
43
+ report_nonexistant_or_empty_plugin! unless valid?
44
+ evaluate_init_rb(initializer)
45
+ @loaded = true
46
+ end
47
+
48
+ def loaded?
49
+ @loaded
50
+ end
51
+
52
+ def <=>(other_plugin)
53
+ name <=> other_plugin.name
54
+ end
55
+
56
+ def about
57
+ @about ||= load_about_information
58
+ end
59
+
60
+ private
61
+ def load_about_information
62
+ about_yml_path = File.join(@directory, "about.yml")
63
+ parsed_yml = File.exist?(about_yml_path) ? YAML.load(File.read(about_yml_path)) : {}
64
+ parsed_yml || {}
65
+ rescue Exception
66
+ {}
67
+ end
68
+
69
+ def report_nonexistant_or_empty_plugin!
70
+ raise LoadError, "Can not find the plugin named: #{name}"
71
+ end
72
+
73
+ def lib_path
74
+ File.join(directory, 'lib')
75
+ end
76
+
77
+ def init_path
78
+ File.join(directory, 'init.rb')
79
+ end
80
+
81
+ def has_lib_directory?
82
+ File.directory?(lib_path)
83
+ end
84
+
85
+ def has_init_file?
86
+ File.file?(init_path)
87
+ end
88
+
89
+ def evaluate_init_rb(initializer)
90
+ if has_init_file?
91
+ silence_warnings do
92
+ # Allow plugins to reference the current configuration object
93
+ config = initializer.configuration
94
+
95
+ eval(IO.read(init_path), binding, init_path)
96
+ end
97
+ end
98
+ end
99
+ end
100
+
101
+ # This Plugin subclass represents a Gem plugin. Although RubyGems has already
102
+ # taken care of $LOAD_PATHs, it exposes its load_paths to add them
103
+ # to Dependencies.load_paths.
104
+ class GemPlugin < Plugin
105
+ # Initialize this plugin from a Gem::Specification.
106
+ def initialize(spec, gem)
107
+ directory = (gem.frozen? && gem.unpacked_paths.first) || File.join(spec.full_gem_path)
108
+ super(directory)
109
+ @name = spec.name
110
+ end
111
+
112
+ def init_path
113
+ File.join(directory, 'rails', 'init.rb')
114
+ end
115
+ end
116
+ end
@@ -0,0 +1,9 @@
1
+ module Rails
2
+ module VERSION #:nodoc:
3
+ MAJOR = 2
4
+ MINOR = 1
5
+ TINY = 2
6
+
7
+ STRING = [MAJOR, MINOR, TINY].join('.')
8
+ end
9
+ end
@@ -0,0 +1,263 @@
1
+ require File.dirname(__FILE__) + '/options'
2
+ require File.dirname(__FILE__) + '/manifest'
3
+ require File.dirname(__FILE__) + '/spec'
4
+ require File.dirname(__FILE__) + '/generated_attribute'
5
+
6
+ module Rails
7
+ # Rails::Generator is a code generation platform tailored for the Rails
8
+ # web application framework. Generators are easily invoked within Rails
9
+ # applications to add and remove components such as models and controllers.
10
+ # New generators are easy to create and may be distributed as RubyGems,
11
+ # tarballs, or Rails plugins for inclusion system-wide, per-user,
12
+ # or per-application.
13
+ #
14
+ # For actual examples see the rails_generator/generators directory in the
15
+ # Rails source (or the +railties+ directory if you have frozen the Rails
16
+ # source in your application).
17
+ #
18
+ # Generators may subclass other generators to provide variations that
19
+ # require little or no new logic but replace the template files.
20
+ #
21
+ # For a RubyGem, put your generator class and templates in the +lib+
22
+ # directory. For a Rails plugin, make a +generators+ directory at the
23
+ # root of your plugin.
24
+ #
25
+ # The layout of generator files can be seen in the built-in
26
+ # +controller+ generator:
27
+ #
28
+ # generators/
29
+ # components/
30
+ # controller/
31
+ # controller_generator.rb
32
+ # templates/
33
+ # controller.rb
34
+ # functional_test.rb
35
+ # helper.rb
36
+ # view.html.erb
37
+ #
38
+ # The directory name (+controller+) matches the name of the generator file
39
+ # (controller_generator.rb) and class (ControllerGenerator). The files
40
+ # that will be copied or used as templates are stored in the +templates+
41
+ # directory.
42
+ #
43
+ # The filenames of the templates don't matter, but choose something that
44
+ # will be self-explanatory since you will be referencing these in the
45
+ # +manifest+ method inside your generator subclass.
46
+ #
47
+ #
48
+ module Generator
49
+ class GeneratorError < StandardError; end
50
+ class UsageError < GeneratorError; end
51
+
52
+
53
+ # The base code generator is bare-bones. It sets up the source and
54
+ # destination paths and tells the logger whether to keep its trap shut.
55
+ #
56
+ # It's useful for copying files such as stylesheets, images, or
57
+ # javascripts.
58
+ #
59
+ # For more comprehensive template-based passive code generation with
60
+ # arguments, you'll want Rails::Generator::NamedBase.
61
+ #
62
+ # Generators create a manifest of the actions they perform then hand
63
+ # the manifest to a command which replays the actions to do the heavy
64
+ # lifting (such as checking for existing files or creating directories
65
+ # if needed). Create, destroy, and list commands are included. Since a
66
+ # single manifest may be used by any command, creating new generators is
67
+ # as simple as writing some code templates and declaring what you'd like
68
+ # to do with them.
69
+ #
70
+ # The manifest method must be implemented by subclasses, returning a
71
+ # Rails::Generator::Manifest. The +record+ method is provided as a
72
+ # convenience for manifest creation. Example:
73
+ #
74
+ # class StylesheetGenerator < Rails::Generator::Base
75
+ # def manifest
76
+ # record do |m|
77
+ # m.directory('public/stylesheets')
78
+ # m.file('application.css', 'public/stylesheets/application.css')
79
+ # end
80
+ # end
81
+ # end
82
+ #
83
+ # See Rails::Generator::Commands::Create for a list of methods available
84
+ # to the manifest.
85
+ class Base
86
+ include Options
87
+
88
+ # Declare default options for the generator. These options
89
+ # are inherited to subclasses.
90
+ default_options :collision => :ask, :quiet => false
91
+
92
+ # A logger instance available everywhere in the generator.
93
+ cattr_accessor :logger
94
+
95
+ # Every generator that is dynamically looked up is tagged with a
96
+ # Spec describing where it was found.
97
+ class_inheritable_accessor :spec
98
+
99
+ attr_reader :source_root, :destination_root, :args
100
+
101
+ def initialize(runtime_args, runtime_options = {})
102
+ @args = runtime_args
103
+ parse!(@args, runtime_options)
104
+
105
+ # Derive source and destination paths.
106
+ @source_root = options[:source] || File.join(spec.path, 'templates')
107
+ if options[:destination]
108
+ @destination_root = options[:destination]
109
+ elsif defined? ::RAILS_ROOT
110
+ @destination_root = ::RAILS_ROOT
111
+ end
112
+
113
+ # Silence the logger if requested.
114
+ logger.quiet = options[:quiet]
115
+
116
+ # Raise usage error if help is requested.
117
+ usage if options[:help]
118
+ end
119
+
120
+ # Generators must provide a manifest. Use the +record+ method to create
121
+ # a new manifest and record your generator's actions.
122
+ def manifest
123
+ raise NotImplementedError, "No manifest for '#{spec.name}' generator."
124
+ end
125
+
126
+ # Return the full path from the source root for the given path.
127
+ # Example for source_root = '/source':
128
+ # source_path('some/path.rb') == '/source/some/path.rb'
129
+ #
130
+ # The given path may include a colon ':' character to indicate that
131
+ # the file belongs to another generator. This notation allows any
132
+ # generator to borrow files from another. Example:
133
+ # source_path('model:fixture.yml') = '/model/source/path/fixture.yml'
134
+ def source_path(relative_source)
135
+ # Check whether we're referring to another generator's file.
136
+ name, path = relative_source.split(':', 2)
137
+
138
+ # If not, return the full path to our source file.
139
+ if path.nil?
140
+ File.join(source_root, name)
141
+
142
+ # Otherwise, ask our referral for the file.
143
+ else
144
+ # FIXME: this is broken, though almost always true. Others'
145
+ # source_root are not necessarily the templates dir.
146
+ File.join(self.class.lookup(name).path, 'templates', path)
147
+ end
148
+ end
149
+
150
+ # Return the full path from the destination root for the given path.
151
+ # Example for destination_root = '/dest':
152
+ # destination_path('some/path.rb') == '/dest/some/path.rb'
153
+ def destination_path(relative_destination)
154
+ File.join(destination_root, relative_destination)
155
+ end
156
+
157
+ protected
158
+ # Convenience method for generator subclasses to record a manifest.
159
+ def record
160
+ Rails::Generator::Manifest.new(self) { |m| yield m }
161
+ end
162
+
163
+ # Override with your own usage banner.
164
+ def banner
165
+ "Usage: #{$0} #{spec.name} [options]"
166
+ end
167
+
168
+ # Read USAGE from file in generator base path.
169
+ def usage_message
170
+ File.read(File.join(spec.path, 'USAGE')) rescue ''
171
+ end
172
+ end
173
+
174
+
175
+ # The base generator for named components: models, controllers, mailers,
176
+ # etc. The target name is taken as the first argument and inflected to
177
+ # singular, plural, class, file, and table forms for your convenience.
178
+ # The remaining arguments are aliased to +actions+ as an array for
179
+ # controller and mailer convenience.
180
+ #
181
+ # Several useful local variables and methods are populated in the
182
+ # +initialize+ method. See below for a list of Attributes and
183
+ # External Aliases available to both the manifest and to all templates.
184
+ #
185
+ # If no name is provided, the generator raises a usage error with content
186
+ # optionally read from the USAGE file in the generator's base path.
187
+ #
188
+ # For example, the +controller+ generator takes the first argument as
189
+ # the name of the class and subsequent arguments as the names of
190
+ # actions to be generated:
191
+ #
192
+ # ./script/generate controller Article index new create
193
+ #
194
+ # See Rails::Generator::Base for a discussion of manifests,
195
+ # Rails::Generator::Commands::Create for methods available to the manifest,
196
+ # and Rails::Generator for a general discussion of generators.
197
+ class NamedBase < Base
198
+ attr_reader :name, :class_name, :singular_name, :plural_name, :table_name
199
+ attr_reader :class_path, :file_path, :class_nesting, :class_nesting_depth
200
+ alias_method :file_name, :singular_name
201
+ alias_method :actions, :args
202
+
203
+ def initialize(runtime_args, runtime_options = {})
204
+ super
205
+
206
+ # Name argument is required.
207
+ usage if runtime_args.empty?
208
+
209
+ @args = runtime_args.dup
210
+ base_name = @args.shift
211
+ assign_names!(base_name)
212
+ end
213
+
214
+ protected
215
+ # Override with your own usage banner.
216
+ def banner
217
+ "Usage: #{$0} #{spec.name} #{spec.name.camelize}Name [options]"
218
+ end
219
+
220
+ def attributes
221
+ @attributes ||= @args.collect do |attribute|
222
+ Rails::Generator::GeneratedAttribute.new(*attribute.split(":"))
223
+ end
224
+ end
225
+
226
+
227
+ private
228
+ def assign_names!(name)
229
+ @name = name
230
+ base_name, @class_path, @file_path, @class_nesting, @class_nesting_depth = extract_modules(@name)
231
+ @class_name_without_nesting, @singular_name, @plural_name = inflect_names(base_name)
232
+ @table_name = (!defined?(ActiveRecord::Base) || ActiveRecord::Base.pluralize_table_names) ? plural_name : singular_name
233
+ @table_name.gsub! '/', '_'
234
+ if @class_nesting.empty?
235
+ @class_name = @class_name_without_nesting
236
+ else
237
+ @table_name = @class_nesting.underscore << "_" << @table_name
238
+ @class_name = "#{@class_nesting}::#{@class_name_without_nesting}"
239
+ end
240
+ end
241
+
242
+ # Extract modules from filesystem-style or ruby-style path:
243
+ # good/fun/stuff
244
+ # Good::Fun::Stuff
245
+ # produce the same results.
246
+ def extract_modules(name)
247
+ modules = name.include?('/') ? name.split('/') : name.split('::')
248
+ name = modules.pop
249
+ path = modules.map { |m| m.underscore }
250
+ file_path = (path + [name.underscore]).join('/')
251
+ nesting = modules.map { |m| m.camelize }.join('::')
252
+ [name, path, file_path, nesting, modules.size]
253
+ end
254
+
255
+ def inflect_names(name)
256
+ camel = name.camelize
257
+ under = camel.underscore
258
+ plural = under.pluralize
259
+ [camel, under, plural]
260
+ end
261
+ end
262
+ end
263
+ end