diy_rails 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (155) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +8 -0
  3. data/Gemfile.lock +21 -0
  4. data/README.md +29 -0
  5. data/Rakefile +4 -0
  6. data/lib/diy_rails/version.rb +5 -0
  7. data/lib/diy_rails.rb +8 -0
  8. data/sig/diy_rails.rbs +4 -0
  9. data/vendor/bundle/ruby/3.0.0/bin/rackup +29 -0
  10. data/vendor/bundle/ruby/3.0.0/bin/rake +29 -0
  11. data/vendor/bundle/ruby/3.0.0/cache/rack-2.2.4.gem +0 -0
  12. data/vendor/bundle/ruby/3.0.0/cache/rake-13.0.6.gem +0 -0
  13. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/CHANGELOG.md +708 -0
  14. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/CONTRIBUTING.md +136 -0
  15. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/MIT-LICENSE +20 -0
  16. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/README.rdoc +306 -0
  17. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/Rakefile +130 -0
  18. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/SPEC.rdoc +288 -0
  19. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/bin/rackup +5 -0
  20. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/contrib/rack.png +0 -0
  21. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/contrib/rack.svg +150 -0
  22. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/contrib/rack_logo.svg +164 -0
  23. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/contrib/rdoc.css +412 -0
  24. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/example/lobster.ru +6 -0
  25. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/example/protectedlobster.rb +16 -0
  26. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/example/protectedlobster.ru +10 -0
  27. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/auth/abstract/handler.rb +39 -0
  28. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/auth/abstract/request.rb +47 -0
  29. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/auth/basic.rb +61 -0
  30. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/auth/digest/md5.rb +131 -0
  31. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/auth/digest/nonce.rb +54 -0
  32. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/auth/digest/params.rb +54 -0
  33. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/auth/digest/request.rb +43 -0
  34. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/body_proxy.rb +45 -0
  35. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/builder.rb +257 -0
  36. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/cascade.rb +68 -0
  37. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/chunked.rb +117 -0
  38. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/common_logger.rb +83 -0
  39. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/conditional_get.rb +83 -0
  40. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/config.rb +22 -0
  41. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/content_length.rb +38 -0
  42. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/content_type.rb +30 -0
  43. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/core_ext/regexp.rb +14 -0
  44. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/deflater.rb +144 -0
  45. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/directory.rb +199 -0
  46. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/etag.rb +77 -0
  47. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/events.rb +153 -0
  48. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/file.rb +7 -0
  49. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/files.rb +218 -0
  50. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/handler/cgi.rb +59 -0
  51. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/handler/fastcgi.rb +100 -0
  52. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/handler/lsws.rb +61 -0
  53. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/handler/scgi.rb +71 -0
  54. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/handler/thin.rb +36 -0
  55. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/handler/webrick.rb +129 -0
  56. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/handler.rb +104 -0
  57. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/head.rb +25 -0
  58. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/lint.rb +806 -0
  59. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/lobster.rb +70 -0
  60. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/lock.rb +32 -0
  61. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/logger.rb +20 -0
  62. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/media_type.rb +43 -0
  63. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/method_override.rb +52 -0
  64. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/mime.rb +685 -0
  65. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/mock.rb +273 -0
  66. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/multipart/generator.rb +97 -0
  67. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/multipart/parser.rb +365 -0
  68. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/multipart/uploaded_file.rb +41 -0
  69. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/multipart.rb +64 -0
  70. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/null_logger.rb +39 -0
  71. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/query_parser.rb +221 -0
  72. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/recursive.rb +64 -0
  73. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/reloader.rb +114 -0
  74. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/request.rb +659 -0
  75. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/response.rb +318 -0
  76. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/rewindable_input.rb +94 -0
  77. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/runtime.rb +34 -0
  78. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/sendfile.rb +162 -0
  79. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/server.rb +466 -0
  80. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/session/abstract/id.rb +523 -0
  81. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/session/cookie.rb +203 -0
  82. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/session/memcache.rb +10 -0
  83. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/session/pool.rb +85 -0
  84. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/show_exceptions.rb +390 -0
  85. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/show_status.rb +113 -0
  86. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/static.rb +187 -0
  87. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/tempfile_reaper.rb +22 -0
  88. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/urlmap.rb +97 -0
  89. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/utils.rb +616 -0
  90. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack/version.rb +29 -0
  91. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/lib/rack.rb +141 -0
  92. data/vendor/bundle/ruby/3.0.0/gems/rack-2.2.4/rack.gemspec +46 -0
  93. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/History.rdoc +2403 -0
  94. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/MIT-LICENSE +21 -0
  95. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/README.rdoc +155 -0
  96. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/command_line_usage.rdoc +158 -0
  97. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/example/Rakefile1 +38 -0
  98. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/example/Rakefile2 +35 -0
  99. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/example/a.c +6 -0
  100. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/example/b.c +6 -0
  101. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/example/main.c +11 -0
  102. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/glossary.rdoc +42 -0
  103. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/jamis.rb +592 -0
  104. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/proto_rake.rdoc +127 -0
  105. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/rake.1 +156 -0
  106. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/rakefile.rdoc +622 -0
  107. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/doc/rational.rdoc +151 -0
  108. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/exe/rake +27 -0
  109. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/application.rb +831 -0
  110. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/backtrace.rb +24 -0
  111. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/clean.rb +78 -0
  112. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/cloneable.rb +17 -0
  113. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/cpu_counter.rb +107 -0
  114. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/default_loader.rb +15 -0
  115. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/dsl_definition.rb +195 -0
  116. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/early_time.rb +22 -0
  117. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/ext/core.rb +26 -0
  118. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/ext/string.rb +176 -0
  119. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/file_creation_task.rb +25 -0
  120. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/file_list.rb +435 -0
  121. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/file_task.rb +54 -0
  122. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/file_utils.rb +134 -0
  123. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/file_utils_ext.rb +134 -0
  124. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/invocation_chain.rb +57 -0
  125. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/invocation_exception_mixin.rb +17 -0
  126. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/late_time.rb +18 -0
  127. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/linked_list.rb +112 -0
  128. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/loaders/makefile.rb +54 -0
  129. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/multi_task.rb +14 -0
  130. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/name_space.rb +38 -0
  131. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/packagetask.rb +222 -0
  132. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/phony.rb +16 -0
  133. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/private_reader.rb +21 -0
  134. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/promise.rb +100 -0
  135. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/pseudo_status.rb +30 -0
  136. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/rake_module.rb +67 -0
  137. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/rake_test_loader.rb +27 -0
  138. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/rule_recursion_overflow_error.rb +20 -0
  139. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/scope.rb +43 -0
  140. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/task.rb +434 -0
  141. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/task_argument_error.rb +8 -0
  142. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/task_arguments.rb +109 -0
  143. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/task_manager.rb +331 -0
  144. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/tasklib.rb +12 -0
  145. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/testtask.rb +189 -0
  146. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/thread_history_display.rb +49 -0
  147. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/thread_pool.rb +163 -0
  148. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/trace_output.rb +23 -0
  149. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/version.rb +10 -0
  150. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake/win32.rb +51 -0
  151. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/lib/rake.rb +71 -0
  152. data/vendor/bundle/ruby/3.0.0/gems/rake-13.0.6/rake.gemspec +100 -0
  153. data/vendor/bundle/ruby/3.0.0/specifications/rack-2.2.4.gemspec +41 -0
  154. data/vendor/bundle/ruby/3.0.0/specifications/rake-13.0.6.gemspec +26 -0
  155. metadata +210 -0
@@ -0,0 +1,831 @@
1
+ # frozen_string_literal: true
2
+ require "optparse"
3
+
4
+ require "rake/task_manager"
5
+ require "rake/file_list"
6
+ require "rake/thread_pool"
7
+ require "rake/thread_history_display"
8
+ require "rake/trace_output"
9
+ require "rake/win32"
10
+
11
+ module Rake
12
+
13
+ CommandLineOptionError = Class.new(StandardError)
14
+
15
+ ##
16
+ # Rake main application object. When invoking +rake+ from the
17
+ # command line, a Rake::Application object is created and run.
18
+
19
+ class Application
20
+ include TaskManager
21
+ include TraceOutput
22
+
23
+ # The name of the application (typically 'rake')
24
+ attr_reader :name
25
+
26
+ # The original directory where rake was invoked.
27
+ attr_reader :original_dir
28
+
29
+ # Name of the actual rakefile used.
30
+ attr_reader :rakefile
31
+
32
+ # Number of columns on the terminal
33
+ attr_accessor :terminal_columns
34
+
35
+ # List of the top level task names (task names from the command line).
36
+ attr_reader :top_level_tasks
37
+
38
+ # Override the detected TTY output state (mostly for testing)
39
+ attr_writer :tty_output
40
+
41
+ DEFAULT_RAKEFILES = [
42
+ "rakefile",
43
+ "Rakefile",
44
+ "rakefile.rb",
45
+ "Rakefile.rb"
46
+ ].freeze
47
+
48
+ # Initialize a Rake::Application object.
49
+ def initialize
50
+ super
51
+ @name = "rake"
52
+ @rakefiles = DEFAULT_RAKEFILES.dup
53
+ @rakefile = nil
54
+ @pending_imports = []
55
+ @imported = []
56
+ @loaders = {}
57
+ @default_loader = Rake::DefaultLoader.new
58
+ @original_dir = Dir.pwd
59
+ @top_level_tasks = []
60
+ add_loader("rb", DefaultLoader.new)
61
+ add_loader("rf", DefaultLoader.new)
62
+ add_loader("rake", DefaultLoader.new)
63
+ @tty_output = STDOUT.tty?
64
+ @terminal_columns = ENV["RAKE_COLUMNS"].to_i
65
+
66
+ set_default_options
67
+ end
68
+
69
+ # Run the Rake application. The run method performs the following
70
+ # three steps:
71
+ #
72
+ # * Initialize the command line options (+init+).
73
+ # * Define the tasks (+load_rakefile+).
74
+ # * Run the top level tasks (+top_level+).
75
+ #
76
+ # If you wish to build a custom rake command, you should call
77
+ # +init+ on your application. Then define any tasks. Finally,
78
+ # call +top_level+ to run your top level tasks.
79
+ def run(argv = ARGV)
80
+ standard_exception_handling do
81
+ init "rake", argv
82
+ load_rakefile
83
+ top_level
84
+ end
85
+ end
86
+
87
+ # Initialize the command line parameters and app name.
88
+ def init(app_name="rake", argv = ARGV)
89
+ standard_exception_handling do
90
+ @name = app_name
91
+ begin
92
+ args = handle_options argv
93
+ rescue ArgumentError
94
+ # Backward compatibility for capistrano
95
+ args = handle_options
96
+ end
97
+ collect_command_line_tasks(args)
98
+ end
99
+ end
100
+
101
+ # Find the rakefile and then load it and any pending imports.
102
+ def load_rakefile
103
+ standard_exception_handling do
104
+ raw_load_rakefile
105
+ end
106
+ end
107
+
108
+ # Run the top level tasks of a Rake application.
109
+ def top_level
110
+ run_with_threads do
111
+ if options.show_tasks
112
+ display_tasks_and_comments
113
+ elsif options.show_prereqs
114
+ display_prerequisites
115
+ else
116
+ top_level_tasks.each { |task_name| invoke_task(task_name) }
117
+ end
118
+ end
119
+ end
120
+
121
+ # Run the given block with the thread startup and shutdown.
122
+ def run_with_threads
123
+ thread_pool.gather_history if options.job_stats == :history
124
+
125
+ yield
126
+
127
+ thread_pool.join
128
+ if options.job_stats
129
+ stats = thread_pool.statistics
130
+ puts "Maximum active threads: #{stats[:max_active_threads]} + main"
131
+ puts "Total threads in play: #{stats[:total_threads_in_play]} + main"
132
+ end
133
+ ThreadHistoryDisplay.new(thread_pool.history).show if
134
+ options.job_stats == :history
135
+ end
136
+
137
+ # Add a loader to handle imported files ending in the extension
138
+ # +ext+.
139
+ def add_loader(ext, loader)
140
+ ext = ".#{ext}" unless ext =~ /^\./
141
+ @loaders[ext] = loader
142
+ end
143
+
144
+ # Application options from the command line
145
+ def options
146
+ @options ||= OpenStruct.new
147
+ end
148
+
149
+ # Return the thread pool used for multithreaded processing.
150
+ def thread_pool # :nodoc:
151
+ @thread_pool ||= ThreadPool.new(options.thread_pool_size || Rake.suggested_thread_count-1)
152
+ end
153
+
154
+ # internal ----------------------------------------------------------------
155
+
156
+ # Invokes a task with arguments that are extracted from +task_string+
157
+ def invoke_task(task_string) # :nodoc:
158
+ name, args = parse_task_string(task_string)
159
+ t = self[name]
160
+ t.invoke(*args)
161
+ end
162
+
163
+ def parse_task_string(string) # :nodoc:
164
+ /^([^\[]+)(?:\[(.*)\])$/ =~ string.to_s
165
+
166
+ name = $1
167
+ remaining_args = $2
168
+
169
+ return string, [] unless name
170
+ return name, [] if remaining_args.empty?
171
+
172
+ args = []
173
+
174
+ begin
175
+ /\s*((?:[^\\,]|\\.)*?)\s*(?:,\s*(.*))?$/ =~ remaining_args
176
+
177
+ remaining_args = $2
178
+ args << $1.gsub(/\\(.)/, '\1')
179
+ end while remaining_args
180
+
181
+ return name, args
182
+ end
183
+
184
+ # Provide standard exception handling for the given block.
185
+ def standard_exception_handling # :nodoc:
186
+ yield
187
+ rescue SystemExit
188
+ # Exit silently with current status
189
+ raise
190
+ rescue OptionParser::InvalidOption => ex
191
+ $stderr.puts ex.message
192
+ exit(false)
193
+ rescue Exception => ex
194
+ # Exit with error message
195
+ display_error_message(ex)
196
+ exit_because_of_exception(ex)
197
+ end
198
+
199
+ # Exit the program because of an unhandled exception.
200
+ # (may be overridden by subclasses)
201
+ def exit_because_of_exception(ex) # :nodoc:
202
+ exit(false)
203
+ end
204
+
205
+ # Display the error message that caused the exception.
206
+ def display_error_message(ex) # :nodoc:
207
+ trace "#{name} aborted!"
208
+ display_exception_details(ex)
209
+ trace "Tasks: #{ex.chain}" if has_chain?(ex)
210
+ trace "(See full trace by running task with --trace)" unless
211
+ options.backtrace
212
+ end
213
+
214
+ def display_exception_details(ex) # :nodoc:
215
+ display_exception_details_seen << ex
216
+
217
+ display_exception_message_details(ex)
218
+ display_exception_backtrace(ex)
219
+ display_cause_details(ex.cause) if has_cause?(ex)
220
+ end
221
+
222
+ def display_cause_details(ex) # :nodoc:
223
+ return if display_exception_details_seen.include? ex
224
+
225
+ trace "\nCaused by:"
226
+ display_exception_details(ex)
227
+ end
228
+
229
+ def display_exception_details_seen # :nodoc:
230
+ Thread.current[:rake_display_exception_details_seen] ||= []
231
+ end
232
+
233
+ def has_cause?(ex) # :nodoc:
234
+ ex.respond_to?(:cause) && ex.cause
235
+ end
236
+
237
+ def display_exception_message_details(ex) # :nodoc:
238
+ if ex.instance_of?(RuntimeError)
239
+ trace ex.message
240
+ else
241
+ trace "#{ex.class.name}: #{ex.message}"
242
+ end
243
+ end
244
+
245
+ def display_exception_backtrace(ex) # :nodoc:
246
+ if options.backtrace
247
+ trace ex.backtrace.join("\n")
248
+ else
249
+ trace Backtrace.collapse(ex.backtrace).join("\n")
250
+ end
251
+ end
252
+
253
+ # Warn about deprecated usage.
254
+ #
255
+ # Example:
256
+ # Rake.application.deprecate("import", "Rake.import", caller.first)
257
+ #
258
+ def deprecate(old_usage, new_usage, call_site) # :nodoc:
259
+ unless options.ignore_deprecate
260
+ $stderr.puts "WARNING: '#{old_usage}' is deprecated. " +
261
+ "Please use '#{new_usage}' instead.\n" +
262
+ " at #{call_site}"
263
+ end
264
+ end
265
+
266
+ # Does the exception have a task invocation chain?
267
+ def has_chain?(exception) # :nodoc:
268
+ exception.respond_to?(:chain) && exception.chain
269
+ end
270
+ private :has_chain?
271
+
272
+ # True if one of the files in RAKEFILES is in the current directory.
273
+ # If a match is found, it is copied into @rakefile.
274
+ def have_rakefile # :nodoc:
275
+ @rakefiles.each do |fn|
276
+ if File.exist?(fn)
277
+ others = FileList.glob(fn, File::FNM_CASEFOLD)
278
+ return others.size == 1 ? others.first : fn
279
+ elsif fn == ""
280
+ return fn
281
+ end
282
+ end
283
+ return nil
284
+ end
285
+
286
+ # True if we are outputting to TTY, false otherwise
287
+ def tty_output? # :nodoc:
288
+ @tty_output
289
+ end
290
+
291
+ # We will truncate output if we are outputting to a TTY or if we've been
292
+ # given an explicit column width to honor
293
+ def truncate_output? # :nodoc:
294
+ tty_output? || @terminal_columns.nonzero?
295
+ end
296
+
297
+ # Display the tasks and comments.
298
+ def display_tasks_and_comments # :nodoc:
299
+ displayable_tasks = tasks.select { |t|
300
+ (options.show_all_tasks || t.comment) &&
301
+ t.name =~ options.show_task_pattern
302
+ }
303
+ case options.show_tasks
304
+ when :tasks
305
+ width = displayable_tasks.map { |t| t.name_with_args.length }.max || 10
306
+ if truncate_output?
307
+ max_column = terminal_width - name.size - width - 7
308
+ else
309
+ max_column = nil
310
+ end
311
+
312
+ displayable_tasks.each do |t|
313
+ printf("#{name} %-#{width}s # %s\n",
314
+ t.name_with_args,
315
+ max_column ? truncate(t.comment, max_column) : t.comment)
316
+ end
317
+ when :describe
318
+ displayable_tasks.each do |t|
319
+ puts "#{name} #{t.name_with_args}"
320
+ comment = t.full_comment || ""
321
+ comment.split("\n").each do |line|
322
+ puts " #{line}"
323
+ end
324
+ puts
325
+ end
326
+ when :lines
327
+ displayable_tasks.each do |t|
328
+ t.locations.each do |loc|
329
+ printf "#{name} %-30s %s\n", t.name_with_args, loc
330
+ end
331
+ end
332
+ else
333
+ fail "Unknown show task mode: '#{options.show_tasks}'"
334
+ end
335
+ end
336
+
337
+ def terminal_width # :nodoc:
338
+ if @terminal_columns.nonzero?
339
+ result = @terminal_columns
340
+ else
341
+ result = unix? ? dynamic_width : 80
342
+ end
343
+ (result < 10) ? 80 : result
344
+ rescue
345
+ 80
346
+ end
347
+
348
+ # Calculate the dynamic width of the
349
+ def dynamic_width # :nodoc:
350
+ @dynamic_width ||= (dynamic_width_stty.nonzero? || dynamic_width_tput)
351
+ end
352
+
353
+ def dynamic_width_stty # :nodoc:
354
+ %x{stty size 2>/dev/null}.split[1].to_i
355
+ end
356
+
357
+ def dynamic_width_tput # :nodoc:
358
+ %x{tput cols 2>/dev/null}.to_i
359
+ end
360
+
361
+ def unix? # :nodoc:
362
+ RbConfig::CONFIG["host_os"] =~
363
+ /(aix|darwin|linux|(net|free|open)bsd|cygwin|solaris|irix|hpux)/i
364
+ end
365
+
366
+ def windows? # :nodoc:
367
+ Win32.windows?
368
+ end
369
+
370
+ def truncate(string, width) # :nodoc:
371
+ if string.nil?
372
+ ""
373
+ elsif string.length <= width
374
+ string
375
+ else
376
+ (string[0, width - 3] || "") + "..."
377
+ end
378
+ end
379
+
380
+ # Display the tasks and prerequisites
381
+ def display_prerequisites # :nodoc:
382
+ tasks.each do |t|
383
+ puts "#{name} #{t.name}"
384
+ t.prerequisites.each { |pre| puts " #{pre}" }
385
+ end
386
+ end
387
+
388
+ def trace(*strings) # :nodoc:
389
+ options.trace_output ||= $stderr
390
+ trace_on(options.trace_output, *strings)
391
+ end
392
+
393
+ def sort_options(options) # :nodoc:
394
+ options.sort_by { |opt|
395
+ opt.select { |o| o.is_a?(String) && o =~ /^-/ }.map(&:downcase).sort.reverse
396
+ }
397
+ end
398
+ private :sort_options
399
+
400
+ # A list of all the standard options used in rake, suitable for
401
+ # passing to OptionParser.
402
+ def standard_rake_options # :nodoc:
403
+ sort_options(
404
+ [
405
+ ["--all", "-A",
406
+ "Show all tasks, even uncommented ones (in combination with -T or -D)",
407
+ lambda { |value|
408
+ options.show_all_tasks = value
409
+ }
410
+ ],
411
+ ["--backtrace=[OUT]",
412
+ "Enable full backtrace. OUT can be stderr (default) or stdout.",
413
+ lambda { |value|
414
+ options.backtrace = true
415
+ select_trace_output(options, "backtrace", value)
416
+ }
417
+ ],
418
+ ["--build-all", "-B",
419
+ "Build all prerequisites, including those which are up-to-date.",
420
+ lambda { |value|
421
+ options.build_all = true
422
+ }
423
+ ],
424
+ ["--comments",
425
+ "Show commented tasks only",
426
+ lambda { |value|
427
+ options.show_all_tasks = !value
428
+ }
429
+ ],
430
+ ["--describe", "-D [PATTERN]",
431
+ "Describe the tasks (matching optional PATTERN), then exit.",
432
+ lambda { |value|
433
+ select_tasks_to_show(options, :describe, value)
434
+ }
435
+ ],
436
+ ["--directory", "-C [DIRECTORY]",
437
+ "Change to DIRECTORY before doing anything.",
438
+ lambda { |value|
439
+ Dir.chdir value
440
+ @original_dir = Dir.pwd
441
+ }
442
+ ],
443
+ ["--dry-run", "-n",
444
+ "Do a dry run without executing actions.",
445
+ lambda { |value|
446
+ Rake.verbose(true)
447
+ Rake.nowrite(true)
448
+ options.dryrun = true
449
+ options.trace = true
450
+ }
451
+ ],
452
+ ["--execute", "-e CODE",
453
+ "Execute some Ruby code and exit.",
454
+ lambda { |value|
455
+ eval(value)
456
+ exit
457
+ }
458
+ ],
459
+ ["--execute-print", "-p CODE",
460
+ "Execute some Ruby code, print the result, then exit.",
461
+ lambda { |value|
462
+ puts eval(value)
463
+ exit
464
+ }
465
+ ],
466
+ ["--execute-continue", "-E CODE",
467
+ "Execute some Ruby code, " +
468
+ "then continue with normal task processing.",
469
+ lambda { |value| eval(value) }
470
+ ],
471
+ ["--jobs", "-j [NUMBER]",
472
+ "Specifies the maximum number of tasks to execute in parallel. " +
473
+ "(default is number of CPU cores + 4)",
474
+ lambda { |value|
475
+ if value.nil? || value == ""
476
+ value = Float::INFINITY
477
+ elsif value =~ /^\d+$/
478
+ value = value.to_i
479
+ else
480
+ value = Rake.suggested_thread_count
481
+ end
482
+ value = 1 if value < 1
483
+ options.thread_pool_size = value - 1
484
+ }
485
+ ],
486
+ ["--job-stats [LEVEL]",
487
+ "Display job statistics. " +
488
+ "LEVEL=history displays a complete job list",
489
+ lambda { |value|
490
+ if value =~ /^history/i
491
+ options.job_stats = :history
492
+ else
493
+ options.job_stats = true
494
+ end
495
+ }
496
+ ],
497
+ ["--libdir", "-I LIBDIR",
498
+ "Include LIBDIR in the search path for required modules.",
499
+ lambda { |value| $:.push(value) }
500
+ ],
501
+ ["--multitask", "-m",
502
+ "Treat all tasks as multitasks.",
503
+ lambda { |value| options.always_multitask = true }
504
+ ],
505
+ ["--no-search", "--nosearch",
506
+ "-N", "Do not search parent directories for the Rakefile.",
507
+ lambda { |value| options.nosearch = true }
508
+ ],
509
+ ["--prereqs", "-P",
510
+ "Display the tasks and dependencies, then exit.",
511
+ lambda { |value| options.show_prereqs = true }
512
+ ],
513
+ ["--quiet", "-q",
514
+ "Do not log messages to standard output.",
515
+ lambda { |value| Rake.verbose(false) }
516
+ ],
517
+ ["--rakefile", "-f [FILENAME]",
518
+ "Use FILENAME as the rakefile to search for.",
519
+ lambda { |value|
520
+ value ||= ""
521
+ @rakefiles.clear
522
+ @rakefiles << value
523
+ }
524
+ ],
525
+ ["--rakelibdir", "--rakelib", "-R RAKELIBDIR",
526
+ "Auto-import any .rake files in RAKELIBDIR. " +
527
+ "(default is 'rakelib')",
528
+ lambda { |value|
529
+ options.rakelib = value.split(File::PATH_SEPARATOR)
530
+ }
531
+ ],
532
+ ["--require", "-r MODULE",
533
+ "Require MODULE before executing rakefile.",
534
+ lambda { |value|
535
+ begin
536
+ require value
537
+ rescue LoadError => ex
538
+ begin
539
+ rake_require value
540
+ rescue LoadError
541
+ raise ex
542
+ end
543
+ end
544
+ }
545
+ ],
546
+ ["--rules",
547
+ "Trace the rules resolution.",
548
+ lambda { |value| options.trace_rules = true }
549
+ ],
550
+ ["--silent", "-s",
551
+ "Like --quiet, but also suppresses the " +
552
+ "'in directory' announcement.",
553
+ lambda { |value|
554
+ Rake.verbose(false)
555
+ options.silent = true
556
+ }
557
+ ],
558
+ ["--suppress-backtrace PATTERN",
559
+ "Suppress backtrace lines matching regexp PATTERN. " +
560
+ "Ignored if --trace is on.",
561
+ lambda { |value|
562
+ options.suppress_backtrace_pattern = Regexp.new(value)
563
+ }
564
+ ],
565
+ ["--system", "-g",
566
+ "Using system wide (global) rakefiles " +
567
+ "(usually '~/.rake/*.rake').",
568
+ lambda { |value| options.load_system = true }
569
+ ],
570
+ ["--no-system", "--nosystem", "-G",
571
+ "Use standard project Rakefile search paths, " +
572
+ "ignore system wide rakefiles.",
573
+ lambda { |value| options.ignore_system = true }
574
+ ],
575
+ ["--tasks", "-T [PATTERN]",
576
+ "Display the tasks (matching optional PATTERN) " +
577
+ "with descriptions, then exit. " +
578
+ "-AT combination displays all of tasks contained no description.",
579
+ lambda { |value|
580
+ select_tasks_to_show(options, :tasks, value)
581
+ }
582
+ ],
583
+ ["--trace=[OUT]", "-t",
584
+ "Turn on invoke/execute tracing, enable full backtrace. " +
585
+ "OUT can be stderr (default) or stdout.",
586
+ lambda { |value|
587
+ options.trace = true
588
+ options.backtrace = true
589
+ select_trace_output(options, "trace", value)
590
+ Rake.verbose(true)
591
+ }
592
+ ],
593
+ ["--verbose", "-v",
594
+ "Log message to standard output.",
595
+ lambda { |value| Rake.verbose(true) }
596
+ ],
597
+ ["--version", "-V",
598
+ "Display the program version.",
599
+ lambda { |value|
600
+ puts "rake, version #{Rake::VERSION}"
601
+ exit
602
+ }
603
+ ],
604
+ ["--where", "-W [PATTERN]",
605
+ "Describe the tasks (matching optional PATTERN), then exit.",
606
+ lambda { |value|
607
+ select_tasks_to_show(options, :lines, value)
608
+ options.show_all_tasks = true
609
+ }
610
+ ],
611
+ ["--no-deprecation-warnings", "-X",
612
+ "Disable the deprecation warnings.",
613
+ lambda { |value|
614
+ options.ignore_deprecate = true
615
+ }
616
+ ],
617
+ ])
618
+ end
619
+
620
+ def select_tasks_to_show(options, show_tasks, value) # :nodoc:
621
+ options.show_tasks = show_tasks
622
+ options.show_task_pattern = Regexp.new(value || "")
623
+ Rake::TaskManager.record_task_metadata = true
624
+ end
625
+ private :select_tasks_to_show
626
+
627
+ def select_trace_output(options, trace_option, value) # :nodoc:
628
+ value = value.strip unless value.nil?
629
+ case value
630
+ when "stdout"
631
+ options.trace_output = $stdout
632
+ when "stderr", nil
633
+ options.trace_output = $stderr
634
+ else
635
+ fail CommandLineOptionError,
636
+ "Unrecognized --#{trace_option} option '#{value}'"
637
+ end
638
+ end
639
+ private :select_trace_output
640
+
641
+ # Read and handle the command line options. Returns the command line
642
+ # arguments that we didn't understand, which should (in theory) be just
643
+ # task names and env vars.
644
+ def handle_options(argv) # :nodoc:
645
+ set_default_options
646
+
647
+ OptionParser.new do |opts|
648
+ opts.banner = "#{Rake.application.name} [-f rakefile] {options} targets..."
649
+ opts.separator ""
650
+ opts.separator "Options are ..."
651
+
652
+ opts.on_tail("-h", "--help", "-H", "Display this help message.") do
653
+ puts opts
654
+ exit
655
+ end
656
+
657
+ standard_rake_options.each { |args| opts.on(*args) }
658
+ opts.environment("RAKEOPT")
659
+ end.parse(argv)
660
+ end
661
+
662
+ # Similar to the regular Ruby +require+ command, but will check
663
+ # for *.rake files in addition to *.rb files.
664
+ def rake_require(file_name, paths=$LOAD_PATH, loaded=$") # :nodoc:
665
+ fn = file_name + ".rake"
666
+ return false if loaded.include?(fn)
667
+ paths.each do |path|
668
+ full_path = File.join(path, fn)
669
+ if File.exist?(full_path)
670
+ Rake.load_rakefile(full_path)
671
+ loaded << fn
672
+ return true
673
+ end
674
+ end
675
+ fail LoadError, "Can't find #{file_name}"
676
+ end
677
+
678
+ def find_rakefile_location # :nodoc:
679
+ here = Dir.pwd
680
+ until (fn = have_rakefile)
681
+ Dir.chdir("..")
682
+ return nil if Dir.pwd == here || options.nosearch
683
+ here = Dir.pwd
684
+ end
685
+ [fn, here]
686
+ ensure
687
+ Dir.chdir(Rake.original_dir)
688
+ end
689
+
690
+ def print_rakefile_directory(location) # :nodoc:
691
+ $stderr.puts "(in #{Dir.pwd})" unless
692
+ options.silent or original_dir == location
693
+ end
694
+
695
+ def raw_load_rakefile # :nodoc:
696
+ rakefile, location = find_rakefile_location
697
+ if (!options.ignore_system) &&
698
+ (options.load_system || rakefile.nil?) &&
699
+ system_dir && File.directory?(system_dir)
700
+ print_rakefile_directory(location)
701
+ glob("#{system_dir}/*.rake") do |name|
702
+ add_import name
703
+ end
704
+ else
705
+ fail "No Rakefile found (looking for: #{@rakefiles.join(', ')})" if
706
+ rakefile.nil?
707
+ @rakefile = rakefile
708
+ Dir.chdir(location)
709
+ print_rakefile_directory(location)
710
+ Rake.load_rakefile(File.expand_path(@rakefile)) if
711
+ @rakefile && @rakefile != ""
712
+ options.rakelib.each do |rlib|
713
+ glob("#{rlib}/*.rake") do |name|
714
+ add_import name
715
+ end
716
+ end
717
+ end
718
+ load_imports
719
+ end
720
+
721
+ def glob(path, &block) # :nodoc:
722
+ FileList.glob(path.tr("\\", "/")).each(&block)
723
+ end
724
+ private :glob
725
+
726
+ # The directory path containing the system wide rakefiles.
727
+ def system_dir # :nodoc:
728
+ @system_dir ||=
729
+ begin
730
+ if ENV["RAKE_SYSTEM"]
731
+ ENV["RAKE_SYSTEM"]
732
+ else
733
+ standard_system_dir
734
+ end
735
+ end
736
+ end
737
+
738
+ # The standard directory containing system wide rake files.
739
+ if Win32.windows?
740
+ def standard_system_dir #:nodoc:
741
+ Win32.win32_system_dir
742
+ end
743
+ else
744
+ def standard_system_dir #:nodoc:
745
+ File.join(File.expand_path("~"), ".rake")
746
+ end
747
+ end
748
+ private :standard_system_dir
749
+
750
+ # Collect the list of tasks on the command line. If no tasks are
751
+ # given, return a list containing only the default task.
752
+ # Environmental assignments are processed at this time as well.
753
+ #
754
+ # `args` is the list of arguments to peruse to get the list of tasks.
755
+ # It should be the command line that was given to rake, less any
756
+ # recognised command-line options, which OptionParser.parse will
757
+ # have taken care of already.
758
+ def collect_command_line_tasks(args) # :nodoc:
759
+ @top_level_tasks = []
760
+ args.each do |arg|
761
+ if arg =~ /^(\w+)=(.*)$/m
762
+ ENV[$1] = $2
763
+ else
764
+ @top_level_tasks << arg unless arg =~ /^-/
765
+ end
766
+ end
767
+ @top_level_tasks.push(default_task_name) if @top_level_tasks.empty?
768
+ end
769
+
770
+ # Default task name ("default").
771
+ # (May be overridden by subclasses)
772
+ def default_task_name # :nodoc:
773
+ "default"
774
+ end
775
+
776
+ # Add a file to the list of files to be imported.
777
+ def add_import(fn) # :nodoc:
778
+ @pending_imports << fn
779
+ end
780
+
781
+ # Load the pending list of imported files.
782
+ def load_imports # :nodoc:
783
+ while fn = @pending_imports.shift
784
+ next if @imported.member?(fn)
785
+ fn_task = lookup(fn) and fn_task.invoke
786
+ ext = File.extname(fn)
787
+ loader = @loaders[ext] || @default_loader
788
+ loader.load(fn)
789
+ if fn_task = lookup(fn) and fn_task.needed?
790
+ fn_task.reenable
791
+ fn_task.invoke
792
+ loader.load(fn)
793
+ end
794
+ @imported << fn
795
+ end
796
+ end
797
+
798
+ def rakefile_location(backtrace=caller) # :nodoc:
799
+ backtrace.map { |t| t[/([^:]+):/, 1] }
800
+
801
+ re = /^#{@rakefile}$/
802
+ re = /#{re.source}/i if windows?
803
+
804
+ backtrace.find { |str| str =~ re } || ""
805
+ end
806
+
807
+ def set_default_options # :nodoc:
808
+ options.always_multitask = false
809
+ options.backtrace = false
810
+ options.build_all = false
811
+ options.dryrun = false
812
+ options.ignore_deprecate = false
813
+ options.ignore_system = false
814
+ options.job_stats = false
815
+ options.load_system = false
816
+ options.nosearch = false
817
+ options.rakelib = %w[rakelib]
818
+ options.show_all_tasks = false
819
+ options.show_prereqs = false
820
+ options.show_task_pattern = nil
821
+ options.show_tasks = nil
822
+ options.silent = false
823
+ options.suppress_backtrace_pattern = nil
824
+ options.thread_pool_size = Rake.suggested_thread_count
825
+ options.trace = false
826
+ options.trace_output = $stderr
827
+ options.trace_rules = false
828
+ end
829
+
830
+ end
831
+ end