warbler 1.4.10 → 2.0.0.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (186) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +12 -29
  3. data/Gemfile +1 -12
  4. data/History.txt +5 -7
  5. data/Mavenfile +1 -2
  6. data/README.rdoc +51 -53
  7. data/Rakefile +7 -13
  8. data/ext/JarMain.java +12 -58
  9. data/ext/WarMain.java +13 -41
  10. data/ext/WarblerJar.java +8 -12
  11. data/lib/warbler.rb +0 -1
  12. data/lib/warbler/config.rb +11 -2
  13. data/lib/warbler/gems.rb +9 -9
  14. data/lib/warbler/jar.rb +2 -4
  15. data/lib/warbler/rake_helper.rb +0 -7
  16. data/lib/warbler/traits.rb +0 -1
  17. data/lib/warbler/traits/bundler.rb +12 -12
  18. data/lib/warbler/traits/gemspec.rb +12 -22
  19. data/lib/warbler/traits/rails.rb +5 -5
  20. data/lib/warbler/traits/war.rb +2 -7
  21. data/lib/warbler/version.rb +1 -1
  22. data/lib/warbler/web_server.rb +4 -16
  23. data/lib/warbler/zip_support.rb +3 -21
  24. data/lib/warbler_jar.jar +0 -0
  25. data/pom.xml +23 -6
  26. data/spec/drb_default_id_conv.rb +48 -50
  27. data/spec/sample_bundler/Gemfile +1 -1
  28. data/spec/sample_bundler/vendor/bundle/jruby/{1.8 → 2.2.0}/bin/rake +7 -3
  29. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/cache/rake-10.4.2.gem +0 -0
  30. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/.autotest +7 -0
  31. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/.gemtest +0 -0
  32. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/.rubocop.yml +27 -0
  33. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/.togglerc +7 -0
  34. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/CONTRIBUTING.rdoc +34 -0
  35. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/History.rdoc +651 -0
  36. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/MIT-LICENSE +21 -0
  37. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/Manifest.txt +166 -0
  38. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/README.rdoc +140 -0
  39. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/Rakefile +81 -0
  40. data/spec/sample_bundler/vendor/bundle/{ruby/1.8/gems/rake-0.8.7 → jruby/2.2.0/gems/rake-10.4.2}/bin/rake +5 -3
  41. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake.rb +79 -0
  42. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/alt_system.rb +110 -0
  43. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/application.rb +790 -0
  44. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/backtrace.rb +23 -0
  45. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/clean.rb +76 -0
  46. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/cloneable.rb +16 -0
  47. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/contrib/.document +1 -0
  48. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/contrib/compositepublisher.rb +21 -0
  49. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/contrib/ftptools.rb +137 -0
  50. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/contrib/publisher.rb +81 -0
  51. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/contrib/rubyforgepublisher.rb +18 -0
  52. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/contrib/sshpublisher.rb +61 -0
  53. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/contrib/sys.rb +4 -0
  54. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/cpu_counter.rb +125 -0
  55. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/default_loader.rb +14 -0
  56. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/dsl_definition.rb +201 -0
  57. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/early_time.rb +21 -0
  58. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/ext/core.rb +25 -0
  59. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/ext/module.rb +2 -0
  60. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/ext/pathname.rb +25 -0
  61. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/ext/string.rb +173 -0
  62. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/ext/time.rb +16 -0
  63. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/file_creation_task.rb +24 -0
  64. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/file_list.rb +428 -0
  65. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/file_task.rb +46 -0
  66. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/file_utils.rb +128 -0
  67. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/file_utils_ext.rb +144 -0
  68. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/gempackagetask.rb +4 -0
  69. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/invocation_chain.rb +56 -0
  70. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/invocation_exception_mixin.rb +16 -0
  71. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/late_time.rb +17 -0
  72. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/linked_list.rb +103 -0
  73. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/loaders/makefile.rb +40 -0
  74. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/multi_task.rb +13 -0
  75. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/name_space.rb +38 -0
  76. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/packagetask.rb +199 -0
  77. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/pathmap.rb +3 -0
  78. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/phony.rb +15 -0
  79. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/private_reader.rb +20 -0
  80. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/promise.rb +99 -0
  81. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/pseudo_status.rb +29 -0
  82. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/rake_module.rb +38 -0
  83. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/rake_test_loader.rb +22 -0
  84. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/rdoctask.rb +4 -0
  85. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/ruby182_test_unit_fix.rb +29 -0
  86. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/rule_recursion_overflow_error.rb +20 -0
  87. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/runtest.rb +27 -0
  88. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/scope.rb +42 -0
  89. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/task.rb +383 -0
  90. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/task_argument_error.rb +7 -0
  91. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/task_arguments.rb +98 -0
  92. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/task_manager.rb +310 -0
  93. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/tasklib.rb +24 -0
  94. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/testtask.rb +212 -0
  95. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/thread_history_display.rb +48 -0
  96. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/thread_pool.rb +164 -0
  97. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/trace_output.rb +22 -0
  98. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/version.rb +7 -0
  99. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/lib/rake/win32.rb +56 -0
  100. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/rakelib/publish.rake +20 -0
  101. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/rakelib/test_times.rake +25 -0
  102. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/file_creation.rb +34 -0
  103. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/helper.rb +130 -0
  104. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/support/rakefile_definitions.rb +478 -0
  105. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/support/ruby_runner.rb +34 -0
  106. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_private_reader.rb +42 -0
  107. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake.rb +40 -0
  108. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_application.rb +643 -0
  109. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_application_options.rb +466 -0
  110. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_backtrace.rb +119 -0
  111. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_clean.rb +61 -0
  112. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_cpu_counter.rb +68 -0
  113. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_definitions.rb +84 -0
  114. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_directory_task.rb +76 -0
  115. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_dsl.rb +40 -0
  116. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_early_time.rb +31 -0
  117. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_extension.rb +59 -0
  118. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_file_creation_task.rb +56 -0
  119. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_file_list.rb +655 -0
  120. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_file_list_path_map.rb +8 -0
  121. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_file_task.rb +197 -0
  122. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_file_utils.rb +309 -0
  123. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_ftp_file.rb +74 -0
  124. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_functional.rb +482 -0
  125. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_invocation_chain.rb +64 -0
  126. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_late_time.rb +18 -0
  127. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_linked_list.rb +84 -0
  128. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_makefile_loader.rb +46 -0
  129. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_multi_task.rb +64 -0
  130. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_name_space.rb +57 -0
  131. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_package_task.rb +79 -0
  132. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_path_map.rb +168 -0
  133. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_path_map_explode.rb +34 -0
  134. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_path_map_partial.rb +18 -0
  135. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_pathname_extensions.rb +15 -0
  136. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_pseudo_status.rb +21 -0
  137. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_rake_test_loader.rb +20 -0
  138. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_reduce_compat.rb +26 -0
  139. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_require.rb +40 -0
  140. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_rules.rb +388 -0
  141. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_scope.rb +44 -0
  142. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_task.rb +393 -0
  143. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_task_argument_parsing.rb +119 -0
  144. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_task_arguments.rb +127 -0
  145. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_task_lib.rb +9 -0
  146. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_task_manager.rb +178 -0
  147. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_task_manager_argument_resolution.rb +19 -0
  148. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_task_with_arguments.rb +172 -0
  149. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_test_task.rb +146 -0
  150. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_thread_pool.rb +145 -0
  151. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_top_level_functions.rb +71 -0
  152. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_rake_win32.rb +72 -0
  153. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_thread_history_display.rb +101 -0
  154. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/gems/rake-10.4.2/test/test_trace_output.rb +52 -0
  155. data/spec/sample_bundler/vendor/bundle/jruby/2.2.0/specifications/rake-10.4.2.gemspec +43 -0
  156. data/spec/sample_jar/sample_jar.gemspec +1 -2
  157. data/spec/spec_helper.rb +2 -8
  158. data/spec/warbler/bundler_spec.rb +11 -22
  159. data/spec/warbler/config_spec.rb +0 -3
  160. data/spec/warbler/jar_spec.rb +3 -77
  161. data/spec/warbler/task_spec.rb +5 -6
  162. data/spec/warbler/web_server_spec.rb +2 -2
  163. data/warble.rb +4 -4
  164. data/warbler.gemspec +8 -8
  165. metadata +451 -64
  166. data/lib/warbler/bundler_helper.rb +0 -22
  167. data/lib/warbler/traits/merb.rb +0 -35
  168. data/spec/sample_bundler/vendor/bundle/jruby/1.8/cache/rake-0.8.7.gem +0 -0
  169. data/spec/sample_bundler/vendor/bundle/jruby/1.8/gems/rake-0.8.7/bin/rake +0 -31
  170. data/spec/sample_bundler/vendor/bundle/jruby/1.8/gems/rake-0.8.7/lib/rake.rb +0 -2506
  171. data/spec/sample_bundler/vendor/bundle/jruby/1.8/specifications/rake-0.8.7.gemspec +0 -31
  172. data/spec/sample_bundler/vendor/bundle/jruby/1.9/bin/rake +0 -19
  173. data/spec/sample_bundler/vendor/bundle/jruby/1.9/cache/rake-0.8.7.gem +0 -0
  174. data/spec/sample_bundler/vendor/bundle/jruby/1.9/gems/rake-0.8.7/bin/rake +0 -31
  175. data/spec/sample_bundler/vendor/bundle/jruby/1.9/gems/rake-0.8.7/lib/rake.rb +0 -2506
  176. data/spec/sample_bundler/vendor/bundle/jruby/1.9/specifications/rake-0.8.7.gemspec +0 -30
  177. data/spec/sample_bundler/vendor/bundle/ruby/1.8/bin/rake +0 -19
  178. data/spec/sample_bundler/vendor/bundle/ruby/1.8/cache/rake-0.8.7.gem +0 -0
  179. data/spec/sample_bundler/vendor/bundle/ruby/1.8/gems/rake-0.8.7/lib/rake.rb +0 -2506
  180. data/spec/sample_bundler/vendor/bundle/ruby/1.8/specifications/rake-0.8.7.gemspec +0 -30
  181. data/spec/sample_bundler/vendor/bundle/ruby/1.9.1/bin/rake +0 -19
  182. data/spec/sample_bundler/vendor/bundle/ruby/1.9.1/cache/rake-0.8.7.gem +0 -0
  183. data/spec/sample_bundler/vendor/bundle/ruby/1.9.1/gems/rake-0.8.7/bin/rake +0 -31
  184. data/spec/sample_bundler/vendor/bundle/ruby/1.9.1/gems/rake-0.8.7/lib/rake.rb +0 -2506
  185. data/spec/sample_bundler/vendor/bundle/ruby/1.9.1/specifications/rake-0.8.7.gemspec +0 -30
  186. data/spec/sample_jar/sbin/sample_jar +0 -5
@@ -0,0 +1,110 @@
1
+ #
2
+ # Copyright (c) 2008 James M. Lawrence
3
+ #
4
+ # Permission is hereby granted, free of charge, to any person
5
+ # obtaining a copy of this software and associated documentation files
6
+ # (the "Software"), to deal in the Software without restriction,
7
+ # including without limitation the rights to use, copy, modify, merge,
8
+ # publish, distribute, sublicense, and/or sell copies of the Software,
9
+ # and to permit persons to whom the Software is furnished to do so,
10
+ # subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be
13
+ # included in all copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19
+ # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20
+ # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ # SOFTWARE.
23
+ #
24
+
25
+ require 'rbconfig'
26
+
27
+ ##
28
+ # Alternate implementations of system() and backticks `` on Windows
29
+ # for ruby-1.8 and earlier.
30
+ #--
31
+ # TODO: Remove in Rake 11
32
+
33
+ module Rake::AltSystem # :nodoc: all
34
+ WINDOWS = RbConfig::CONFIG["host_os"] =~
35
+ %r!(msdos|mswin|djgpp|mingw|[Ww]indows)!
36
+
37
+ class << self
38
+ def define_module_function(name, &block)
39
+ define_method(name, &block)
40
+ module_function(name)
41
+ end
42
+ end
43
+
44
+ if WINDOWS && RUBY_VERSION < "1.9.0"
45
+ RUNNABLE_EXTS = %w[com exe bat cmd]
46
+ RUNNABLE_PATTERN = %r!\.(#{RUNNABLE_EXTS.join('|')})\Z!i
47
+
48
+ define_module_function :kernel_system, &Kernel.method(:system)
49
+ define_module_function :kernel_backticks, &Kernel.method(:'`')
50
+
51
+ module_function
52
+
53
+ def repair_command(cmd)
54
+ "call " + (
55
+ if cmd =~ %r!\A\s*\".*?\"!
56
+ # already quoted
57
+ cmd
58
+ elsif match = cmd.match(%r!\A\s*(\S+)!)
59
+ if match[1] =~ %r!/!
60
+ # avoid x/y.bat interpretation as x with option /y
61
+ %Q!"#{match[1]}"! + match.post_match
62
+ else
63
+ # a shell command will fail if quoted
64
+ cmd
65
+ end
66
+ else
67
+ # empty or whitespace
68
+ cmd
69
+ end
70
+ )
71
+ end
72
+
73
+ def find_runnable(file)
74
+ if file =~ RUNNABLE_PATTERN
75
+ file
76
+ else
77
+ RUNNABLE_EXTS.each { |ext|
78
+ test = "#{file}.#{ext}"
79
+ return test if File.exist?(test)
80
+ }
81
+ nil
82
+ end
83
+ end
84
+
85
+ def system(cmd, *args)
86
+ repaired = (
87
+ if args.empty?
88
+ [repair_command(cmd)]
89
+ elsif runnable = find_runnable(cmd)
90
+ [File.expand_path(runnable), *args]
91
+ else
92
+ # non-existent file
93
+ [cmd, *args]
94
+ end
95
+ )
96
+ kernel_system(*repaired)
97
+ end
98
+
99
+ def backticks(cmd)
100
+ kernel_backticks(repair_command(cmd))
101
+ end
102
+
103
+ define_module_function :'`', &method(:backticks)
104
+ else
105
+ # Non-Windows or ruby-1.9+: same as Kernel versions
106
+ define_module_function :system, &Kernel.method(:system)
107
+ define_module_function :backticks, &Kernel.method(:'`')
108
+ define_module_function :'`', &Kernel.method(:'`')
109
+ end
110
+ end
@@ -0,0 +1,790 @@
1
+ require 'shellwords'
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
+ DEFAULT_RAKEFILES = [
39
+ 'rakefile',
40
+ 'Rakefile',
41
+ 'rakefile.rb',
42
+ 'Rakefile.rb'
43
+ ].freeze
44
+
45
+ # Initialize a Rake::Application object.
46
+ def initialize
47
+ super
48
+ @name = 'rake'
49
+ @rakefiles = DEFAULT_RAKEFILES.dup
50
+ @rakefile = nil
51
+ @pending_imports = []
52
+ @imported = []
53
+ @loaders = {}
54
+ @default_loader = Rake::DefaultLoader.new
55
+ @original_dir = Dir.pwd
56
+ @top_level_tasks = []
57
+ add_loader('rb', DefaultLoader.new)
58
+ add_loader('rf', DefaultLoader.new)
59
+ add_loader('rake', DefaultLoader.new)
60
+ @tty_output = STDOUT.tty?
61
+ @terminal_columns = ENV['RAKE_COLUMNS'].to_i
62
+ end
63
+
64
+ # Run the Rake application. The run method performs the following
65
+ # three steps:
66
+ #
67
+ # * Initialize the command line options (+init+).
68
+ # * Define the tasks (+load_rakefile+).
69
+ # * Run the top level tasks (+top_level+).
70
+ #
71
+ # If you wish to build a custom rake command, you should call
72
+ # +init+ on your application. Then define any tasks. Finally,
73
+ # call +top_level+ to run your top level tasks.
74
+ def run
75
+ standard_exception_handling do
76
+ init
77
+ load_rakefile
78
+ top_level
79
+ end
80
+ end
81
+
82
+ # Initialize the command line parameters and app name.
83
+ def init(app_name='rake')
84
+ standard_exception_handling do
85
+ @name = app_name
86
+ args = handle_options
87
+ collect_command_line_tasks(args)
88
+ end
89
+ end
90
+
91
+ # Find the rakefile and then load it and any pending imports.
92
+ def load_rakefile
93
+ standard_exception_handling do
94
+ raw_load_rakefile
95
+ end
96
+ end
97
+
98
+ # Run the top level tasks of a Rake application.
99
+ def top_level
100
+ run_with_threads do
101
+ if options.show_tasks
102
+ display_tasks_and_comments
103
+ elsif options.show_prereqs
104
+ display_prerequisites
105
+ else
106
+ top_level_tasks.each { |task_name| invoke_task(task_name) }
107
+ end
108
+ end
109
+ end
110
+
111
+ # Run the given block with the thread startup and shutdown.
112
+ def run_with_threads
113
+ thread_pool.gather_history if options.job_stats == :history
114
+
115
+ yield
116
+
117
+ thread_pool.join
118
+ if options.job_stats
119
+ stats = thread_pool.statistics
120
+ puts "Maximum active threads: #{stats[:max_active_threads]} + main"
121
+ puts "Total threads in play: #{stats[:total_threads_in_play]} + main"
122
+ end
123
+ ThreadHistoryDisplay.new(thread_pool.history).show if
124
+ options.job_stats == :history
125
+ end
126
+
127
+ # Add a loader to handle imported files ending in the extension
128
+ # +ext+.
129
+ def add_loader(ext, loader)
130
+ ext = ".#{ext}" unless ext =~ /^\./
131
+ @loaders[ext] = loader
132
+ end
133
+
134
+ # Application options from the command line
135
+ def options
136
+ @options ||= OpenStruct.new
137
+ end
138
+
139
+ # Return the thread pool used for multithreaded processing.
140
+ def thread_pool # :nodoc:
141
+ @thread_pool ||= ThreadPool.new(options.thread_pool_size || Rake.suggested_thread_count-1)
142
+ end
143
+
144
+ # internal ----------------------------------------------------------------
145
+
146
+ # Invokes a task with arguments that are extracted from +task_string+
147
+ def invoke_task(task_string) # :nodoc:
148
+ name, args = parse_task_string(task_string)
149
+ t = self[name]
150
+ t.invoke(*args)
151
+ end
152
+
153
+ def parse_task_string(string) # :nodoc:
154
+ /^([^\[]+)(?:\[(.*)\])$/ =~ string.to_s
155
+
156
+ name = $1
157
+ remaining_args = $2
158
+
159
+ return string, [] unless name
160
+ return name, [] if remaining_args.empty?
161
+
162
+ args = []
163
+
164
+ begin
165
+ /((?:[^\\,]|\\.)*?)\s*(?:,\s*(.*))?$/ =~ remaining_args
166
+
167
+ remaining_args = $2
168
+ args << $1.gsub(/\\(.)/, '\1')
169
+ end while remaining_args
170
+
171
+ return name, args
172
+ end
173
+
174
+ # Provide standard exception handling for the given block.
175
+ def standard_exception_handling # :nodoc:
176
+ yield
177
+ rescue SystemExit
178
+ # Exit silently with current status
179
+ raise
180
+ rescue OptionParser::InvalidOption => ex
181
+ $stderr.puts ex.message
182
+ exit(false)
183
+ rescue Exception => ex
184
+ # Exit with error message
185
+ display_error_message(ex)
186
+ exit_because_of_exception(ex)
187
+ end
188
+
189
+ # Exit the program because of an unhandle exception.
190
+ # (may be overridden by subclasses)
191
+ def exit_because_of_exception(ex) # :nodoc:
192
+ exit(false)
193
+ end
194
+
195
+ # Display the error message that caused the exception.
196
+ def display_error_message(ex) # :nodoc:
197
+ trace "#{name} aborted!"
198
+ display_exception_details(ex)
199
+ trace "Tasks: #{ex.chain}" if has_chain?(ex)
200
+ trace "(See full trace by running task with --trace)" unless
201
+ options.backtrace
202
+ end
203
+
204
+ def display_exception_details(ex) # :nodoc:
205
+ seen = Thread.current[:rake_display_exception_details_seen] ||= []
206
+ return if seen.include? ex
207
+ seen << ex
208
+
209
+ display_exception_message_details(ex)
210
+ display_exception_backtrace(ex)
211
+ display_exception_details(ex.cause) if has_cause?(ex)
212
+ end
213
+
214
+ def has_cause?(ex) # :nodoc:
215
+ ex.respond_to?(:cause) && ex.cause
216
+ end
217
+
218
+ def display_exception_message_details(ex) # :nodoc:
219
+ if ex.instance_of?(RuntimeError)
220
+ trace ex.message
221
+ else
222
+ trace "#{ex.class.name}: #{ex.message}"
223
+ end
224
+ end
225
+
226
+ def display_exception_backtrace(ex) # :nodoc:
227
+ if options.backtrace
228
+ trace ex.backtrace.join("\n")
229
+ else
230
+ trace Backtrace.collapse(ex.backtrace).join("\n")
231
+ end
232
+ end
233
+
234
+ # Warn about deprecated usage.
235
+ #
236
+ # Example:
237
+ # Rake.application.deprecate("import", "Rake.import", caller.first)
238
+ #
239
+ def deprecate(old_usage, new_usage, call_site) # :nodoc:
240
+ unless options.ignore_deprecate
241
+ $stderr.puts "WARNING: '#{old_usage}' is deprecated. " +
242
+ "Please use '#{new_usage}' instead.\n" +
243
+ " at #{call_site}"
244
+ end
245
+ end
246
+
247
+ # Does the exception have a task invocation chain?
248
+ def has_chain?(exception) # :nodoc:
249
+ exception.respond_to?(:chain) && exception.chain
250
+ end
251
+ private :has_chain?
252
+
253
+ # True if one of the files in RAKEFILES is in the current directory.
254
+ # If a match is found, it is copied into @rakefile.
255
+ def have_rakefile # :nodoc:
256
+ @rakefiles.each do |fn|
257
+ if File.exist?(fn)
258
+ others = FileList.glob(fn, File::FNM_CASEFOLD)
259
+ return others.size == 1 ? others.first : fn
260
+ elsif fn == ''
261
+ return fn
262
+ end
263
+ end
264
+ return nil
265
+ end
266
+
267
+ # True if we are outputting to TTY, false otherwise
268
+ def tty_output? # :nodoc:
269
+ @tty_output
270
+ end
271
+
272
+ # Override the detected TTY output state (mostly for testing)
273
+ def tty_output=(tty_output_state) # :nodoc:
274
+ @tty_output = tty_output_state
275
+ end
276
+
277
+ # We will truncate output if we are outputting to a TTY or if we've been
278
+ # given an explicit column width to honor
279
+ def truncate_output? # :nodoc:
280
+ tty_output? || @terminal_columns.nonzero?
281
+ end
282
+
283
+ # Display the tasks and comments.
284
+ def display_tasks_and_comments # :nodoc:
285
+ displayable_tasks = tasks.select { |t|
286
+ (options.show_all_tasks || t.comment) &&
287
+ t.name =~ options.show_task_pattern
288
+ }
289
+ case options.show_tasks
290
+ when :tasks
291
+ width = displayable_tasks.map { |t| t.name_with_args.length }.max || 10
292
+ if truncate_output?
293
+ max_column = terminal_width - name.size - width - 7
294
+ else
295
+ max_column = nil
296
+ end
297
+
298
+ displayable_tasks.each do |t|
299
+ printf("#{name} %-#{width}s # %s\n",
300
+ t.name_with_args,
301
+ max_column ? truncate(t.comment, max_column) : t.comment)
302
+ end
303
+ when :describe
304
+ displayable_tasks.each do |t|
305
+ puts "#{name} #{t.name_with_args}"
306
+ comment = t.full_comment || ""
307
+ comment.split("\n").each do |line|
308
+ puts " #{line}"
309
+ end
310
+ puts
311
+ end
312
+ when :lines
313
+ displayable_tasks.each do |t|
314
+ t.locations.each do |loc|
315
+ printf "#{name} %-30s %s\n", t.name_with_args, loc
316
+ end
317
+ end
318
+ else
319
+ fail "Unknown show task mode: '#{options.show_tasks}'"
320
+ end
321
+ end
322
+
323
+ def terminal_width # :nodoc:
324
+ if @terminal_columns.nonzero?
325
+ result = @terminal_columns
326
+ else
327
+ result = unix? ? dynamic_width : 80
328
+ end
329
+ (result < 10) ? 80 : result
330
+ rescue
331
+ 80
332
+ end
333
+
334
+ # Calculate the dynamic width of the
335
+ def dynamic_width # :nodoc:
336
+ @dynamic_width ||= (dynamic_width_stty.nonzero? || dynamic_width_tput)
337
+ end
338
+
339
+ def dynamic_width_stty # :nodoc:
340
+ %x{stty size 2>/dev/null}.split[1].to_i
341
+ end
342
+
343
+ def dynamic_width_tput # :nodoc:
344
+ %x{tput cols 2>/dev/null}.to_i
345
+ end
346
+
347
+ def unix? # :nodoc:
348
+ RbConfig::CONFIG['host_os'] =~
349
+ /(aix|darwin|linux|(net|free|open)bsd|cygwin|solaris|irix|hpux)/i
350
+ end
351
+
352
+ def windows? # :nodoc:
353
+ Win32.windows?
354
+ end
355
+
356
+ def truncate(string, width) # :nodoc:
357
+ if string.nil?
358
+ ""
359
+ elsif string.length <= width
360
+ string
361
+ else
362
+ (string[0, width - 3] || "") + "..."
363
+ end
364
+ end
365
+
366
+ # Display the tasks and prerequisites
367
+ def display_prerequisites # :nodoc:
368
+ tasks.each do |t|
369
+ puts "#{name} #{t.name}"
370
+ t.prerequisites.each { |pre| puts " #{pre}" }
371
+ end
372
+ end
373
+
374
+ def trace(*strings) # :nodoc:
375
+ options.trace_output ||= $stderr
376
+ trace_on(options.trace_output, *strings)
377
+ end
378
+
379
+ def sort_options(options) # :nodoc:
380
+ options.sort_by { |opt|
381
+ opt.select { |o| o =~ /^-/ }.map { |o| o.downcase }.sort.reverse
382
+ }
383
+ end
384
+ private :sort_options
385
+
386
+ # A list of all the standard options used in rake, suitable for
387
+ # passing to OptionParser.
388
+ def standard_rake_options # :nodoc:
389
+ sort_options(
390
+ [
391
+ ['--all', '-A',
392
+ "Show all tasks, even uncommented ones (in combination with -T or -D)",
393
+ lambda { |value|
394
+ options.show_all_tasks = value
395
+ }
396
+ ],
397
+ ['--backtrace=[OUT]',
398
+ "Enable full backtrace. OUT can be stderr (default) or stdout.",
399
+ lambda { |value|
400
+ options.backtrace = true
401
+ select_trace_output(options, 'backtrace', value)
402
+ }
403
+ ],
404
+ ['--build-all', '-B',
405
+ "Build all prerequisites, including those which are up-to-date.",
406
+ lambda { |value|
407
+ options.build_all = true
408
+ }
409
+ ],
410
+ ['--comments',
411
+ "Show commented tasks only",
412
+ lambda { |value|
413
+ options.show_all_tasks = !value
414
+ }
415
+ ],
416
+ ['--describe', '-D [PATTERN]',
417
+ "Describe the tasks (matching optional PATTERN), then exit.",
418
+ lambda { |value|
419
+ select_tasks_to_show(options, :describe, value)
420
+ }
421
+ ],
422
+ ['--dry-run', '-n',
423
+ "Do a dry run without executing actions.",
424
+ lambda { |value|
425
+ Rake.verbose(true)
426
+ Rake.nowrite(true)
427
+ options.dryrun = true
428
+ options.trace = true
429
+ }
430
+ ],
431
+ ['--execute', '-e CODE',
432
+ "Execute some Ruby code and exit.",
433
+ lambda { |value|
434
+ eval(value)
435
+ exit
436
+ }
437
+ ],
438
+ ['--execute-print', '-p CODE',
439
+ "Execute some Ruby code, print the result, then exit.",
440
+ lambda { |value|
441
+ puts eval(value)
442
+ exit
443
+ }
444
+ ],
445
+ ['--execute-continue', '-E CODE',
446
+ "Execute some Ruby code, " +
447
+ "then continue with normal task processing.",
448
+ lambda { |value| eval(value) }
449
+ ],
450
+ ['--jobs', '-j [NUMBER]',
451
+ "Specifies the maximum number of tasks to execute in parallel. " +
452
+ "(default is number of CPU cores + 4)",
453
+ lambda { |value|
454
+ if value.nil? || value == ''
455
+ value = FIXNUM_MAX
456
+ elsif value =~ /^\d+$/
457
+ value = value.to_i
458
+ else
459
+ value = Rake.suggested_thread_count
460
+ end
461
+ value = 1 if value < 1
462
+ options.thread_pool_size = value - 1
463
+ }
464
+ ],
465
+ ['--job-stats [LEVEL]',
466
+ "Display job statistics. " +
467
+ "LEVEL=history displays a complete job list",
468
+ lambda { |value|
469
+ if value =~ /^history/i
470
+ options.job_stats = :history
471
+ else
472
+ options.job_stats = true
473
+ end
474
+ }
475
+ ],
476
+ ['--libdir', '-I LIBDIR',
477
+ "Include LIBDIR in the search path for required modules.",
478
+ lambda { |value| $:.push(value) }
479
+ ],
480
+ ['--multitask', '-m',
481
+ "Treat all tasks as multitasks.",
482
+ lambda { |value| options.always_multitask = true }
483
+ ],
484
+ ['--no-search', '--nosearch',
485
+ '-N', "Do not search parent directories for the Rakefile.",
486
+ lambda { |value| options.nosearch = true }
487
+ ],
488
+ ['--prereqs', '-P',
489
+ "Display the tasks and dependencies, then exit.",
490
+ lambda { |value| options.show_prereqs = true }
491
+ ],
492
+ ['--quiet', '-q',
493
+ "Do not log messages to standard output.",
494
+ lambda { |value| Rake.verbose(false) }
495
+ ],
496
+ ['--rakefile', '-f [FILENAME]',
497
+ "Use FILENAME as the rakefile to search for.",
498
+ lambda { |value|
499
+ value ||= ''
500
+ @rakefiles.clear
501
+ @rakefiles << value
502
+ }
503
+ ],
504
+ ['--rakelibdir', '--rakelib', '-R RAKELIBDIR',
505
+ "Auto-import any .rake files in RAKELIBDIR. " +
506
+ "(default is 'rakelib')",
507
+ lambda { |value|
508
+ options.rakelib = value.split(File::PATH_SEPARATOR)
509
+ }
510
+ ],
511
+ ['--require', '-r MODULE',
512
+ "Require MODULE before executing rakefile.",
513
+ lambda { |value|
514
+ begin
515
+ require value
516
+ rescue LoadError => ex
517
+ begin
518
+ rake_require value
519
+ rescue LoadError
520
+ raise ex
521
+ end
522
+ end
523
+ }
524
+ ],
525
+ ['--rules',
526
+ "Trace the rules resolution.",
527
+ lambda { |value| options.trace_rules = true }
528
+ ],
529
+ ['--silent', '-s',
530
+ "Like --quiet, but also suppresses the " +
531
+ "'in directory' announcement.",
532
+ lambda { |value|
533
+ Rake.verbose(false)
534
+ options.silent = true
535
+ }
536
+ ],
537
+ ['--suppress-backtrace PATTERN',
538
+ "Suppress backtrace lines matching regexp PATTERN. " +
539
+ "Ignored if --trace is on.",
540
+ lambda { |value|
541
+ options.suppress_backtrace_pattern = Regexp.new(value)
542
+ }
543
+ ],
544
+ ['--system', '-g',
545
+ "Using system wide (global) rakefiles " +
546
+ "(usually '~/.rake/*.rake').",
547
+ lambda { |value| options.load_system = true }
548
+ ],
549
+ ['--no-system', '--nosystem', '-G',
550
+ "Use standard project Rakefile search paths, " +
551
+ "ignore system wide rakefiles.",
552
+ lambda { |value| options.ignore_system = true }
553
+ ],
554
+ ['--tasks', '-T [PATTERN]',
555
+ "Display the tasks (matching optional PATTERN) " +
556
+ "with descriptions, then exit.",
557
+ lambda { |value|
558
+ select_tasks_to_show(options, :tasks, value)
559
+ }
560
+ ],
561
+ ['--trace=[OUT]', '-t',
562
+ "Turn on invoke/execute tracing, enable full backtrace. " +
563
+ "OUT can be stderr (default) or stdout.",
564
+ lambda { |value|
565
+ options.trace = true
566
+ options.backtrace = true
567
+ select_trace_output(options, 'trace', value)
568
+ Rake.verbose(true)
569
+ }
570
+ ],
571
+ ['--verbose', '-v',
572
+ "Log message to standard output.",
573
+ lambda { |value| Rake.verbose(true) }
574
+ ],
575
+ ['--version', '-V',
576
+ "Display the program version.",
577
+ lambda { |value|
578
+ puts "rake, version #{RAKEVERSION}"
579
+ exit
580
+ }
581
+ ],
582
+ ['--where', '-W [PATTERN]',
583
+ "Describe the tasks (matching optional PATTERN), then exit.",
584
+ lambda { |value|
585
+ select_tasks_to_show(options, :lines, value)
586
+ options.show_all_tasks = true
587
+ }
588
+ ],
589
+ ['--no-deprecation-warnings', '-X',
590
+ "Disable the deprecation warnings.",
591
+ lambda { |value|
592
+ options.ignore_deprecate = true
593
+ }
594
+ ],
595
+ ])
596
+ end
597
+
598
+ def select_tasks_to_show(options, show_tasks, value) # :nodoc:
599
+ options.show_tasks = show_tasks
600
+ options.show_task_pattern = Regexp.new(value || '')
601
+ Rake::TaskManager.record_task_metadata = true
602
+ end
603
+ private :select_tasks_to_show
604
+
605
+ def select_trace_output(options, trace_option, value) # :nodoc:
606
+ value = value.strip unless value.nil?
607
+ case value
608
+ when 'stdout'
609
+ options.trace_output = $stdout
610
+ when 'stderr', nil
611
+ options.trace_output = $stderr
612
+ else
613
+ fail CommandLineOptionError,
614
+ "Unrecognized --#{trace_option} option '#{value}'"
615
+ end
616
+ end
617
+ private :select_trace_output
618
+
619
+ # Read and handle the command line options. Returns the command line
620
+ # arguments that we didn't understand, which should (in theory) be just
621
+ # task names and env vars.
622
+ def handle_options # :nodoc:
623
+ options.rakelib = ['rakelib']
624
+ options.trace_output = $stderr
625
+
626
+ OptionParser.new do |opts|
627
+ opts.banner = "#{Rake.application.name} [-f rakefile] {options} targets..."
628
+ opts.separator ""
629
+ opts.separator "Options are ..."
630
+
631
+ opts.on_tail("-h", "--help", "-H", "Display this help message.") do
632
+ puts opts
633
+ exit
634
+ end
635
+
636
+ standard_rake_options.each { |args| opts.on(*args) }
637
+ opts.environment('RAKEOPT')
638
+ end.parse(ARGV)
639
+ end
640
+
641
+ # Similar to the regular Ruby +require+ command, but will check
642
+ # for *.rake files in addition to *.rb files.
643
+ def rake_require(file_name, paths=$LOAD_PATH, loaded=$") # :nodoc:
644
+ fn = file_name + ".rake"
645
+ return false if loaded.include?(fn)
646
+ paths.each do |path|
647
+ full_path = File.join(path, fn)
648
+ if File.exist?(full_path)
649
+ Rake.load_rakefile(full_path)
650
+ loaded << fn
651
+ return true
652
+ end
653
+ end
654
+ fail LoadError, "Can't find #{file_name}"
655
+ end
656
+
657
+ def find_rakefile_location # :nodoc:
658
+ here = Dir.pwd
659
+ until (fn = have_rakefile)
660
+ Dir.chdir("..")
661
+ return nil if Dir.pwd == here || options.nosearch
662
+ here = Dir.pwd
663
+ end
664
+ [fn, here]
665
+ ensure
666
+ Dir.chdir(Rake.original_dir)
667
+ end
668
+
669
+ def print_rakefile_directory(location) # :nodoc:
670
+ $stderr.puts "(in #{Dir.pwd})" unless
671
+ options.silent or original_dir == location
672
+ end
673
+
674
+ def raw_load_rakefile # :nodoc:
675
+ rakefile, location = find_rakefile_location
676
+ if (! options.ignore_system) &&
677
+ (options.load_system || rakefile.nil?) &&
678
+ system_dir && File.directory?(system_dir)
679
+ print_rakefile_directory(location)
680
+ glob("#{system_dir}/*.rake") do |name|
681
+ add_import name
682
+ end
683
+ else
684
+ fail "No Rakefile found (looking for: #{@rakefiles.join(', ')})" if
685
+ rakefile.nil?
686
+ @rakefile = rakefile
687
+ Dir.chdir(location)
688
+ print_rakefile_directory(location)
689
+ Rake.load_rakefile(File.expand_path(@rakefile)) if
690
+ @rakefile && @rakefile != ''
691
+ options.rakelib.each do |rlib|
692
+ glob("#{rlib}/*.rake") do |name|
693
+ add_import name
694
+ end
695
+ end
696
+ end
697
+ load_imports
698
+ end
699
+
700
+ def glob(path, &block) # :nodoc:
701
+ FileList.glob(path.gsub("\\", '/')).each(&block)
702
+ end
703
+ private :glob
704
+
705
+ # The directory path containing the system wide rakefiles.
706
+ def system_dir # :nodoc:
707
+ @system_dir ||=
708
+ begin
709
+ if ENV['RAKE_SYSTEM']
710
+ ENV['RAKE_SYSTEM']
711
+ else
712
+ standard_system_dir
713
+ end
714
+ end
715
+ end
716
+
717
+ # The standard directory containing system wide rake files.
718
+ if Win32.windows?
719
+ def standard_system_dir #:nodoc:
720
+ Win32.win32_system_dir
721
+ end
722
+ else
723
+ def standard_system_dir #:nodoc:
724
+ File.join(File.expand_path('~'), '.rake')
725
+ end
726
+ end
727
+ private :standard_system_dir
728
+
729
+ # Collect the list of tasks on the command line. If no tasks are
730
+ # given, return a list containing only the default task.
731
+ # Environmental assignments are processed at this time as well.
732
+ #
733
+ # `args` is the list of arguments to peruse to get the list of tasks.
734
+ # It should be the command line that was given to rake, less any
735
+ # recognised command-line options, which OptionParser.parse will
736
+ # have taken care of already.
737
+ def collect_command_line_tasks(args) # :nodoc:
738
+ @top_level_tasks = []
739
+ args.each do |arg|
740
+ if arg =~ /^(\w+)=(.*)$/m
741
+ ENV[$1] = $2
742
+ else
743
+ @top_level_tasks << arg unless arg =~ /^-/
744
+ end
745
+ end
746
+ @top_level_tasks.push(default_task_name) if @top_level_tasks.empty?
747
+ end
748
+
749
+ # Default task name ("default").
750
+ # (May be overridden by subclasses)
751
+ def default_task_name # :nodoc:
752
+ "default"
753
+ end
754
+
755
+ # Add a file to the list of files to be imported.
756
+ def add_import(fn) # :nodoc:
757
+ @pending_imports << fn
758
+ end
759
+
760
+ # Load the pending list of imported files.
761
+ def load_imports # :nodoc:
762
+ while fn = @pending_imports.shift
763
+ next if @imported.member?(fn)
764
+ fn_task = lookup(fn) and fn_task.invoke
765
+ ext = File.extname(fn)
766
+ loader = @loaders[ext] || @default_loader
767
+ loader.load(fn)
768
+ if fn_task = lookup(fn) and fn_task.needed?
769
+ fn_task.reenable
770
+ fn_task.invoke
771
+ loader.load(fn)
772
+ end
773
+ @imported << fn
774
+ end
775
+ end
776
+
777
+ def rakefile_location(backtrace=caller) # :nodoc:
778
+ backtrace.map { |t| t[/([^:]+):/, 1] }
779
+
780
+ re = /^#{@rakefile}$/
781
+ re = /#{re.source}/i if windows?
782
+
783
+ backtrace.find { |str| str =~ re } || ''
784
+ end
785
+
786
+ private
787
+ FIXNUM_MAX = (2**(0.size * 8 - 2) - 1) # :nodoc:
788
+
789
+ end
790
+ end