allegro_api_client 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (296) hide show
  1. checksums.yaml +7 -0
  2. data/.bundle/config +3 -0
  3. data/Gemfile +3 -0
  4. data/Gemfile.lock +25 -0
  5. data/README.md +19 -0
  6. data/apiclient.gemspec +24 -0
  7. data/gems/ruby/2.1.0/bin/httparty +23 -0
  8. data/gems/ruby/2.1.0/bin/rake +23 -0
  9. data/gems/ruby/2.1.0/build_info/git_repository-0.0.11.info +1 -0
  10. data/gems/ruby/2.1.0/build_info/httparty-0.13.1.info +1 -0
  11. data/gems/ruby/2.1.0/build_info/multi_xml-0.5.5.info +1 -0
  12. data/gems/ruby/2.1.0/build_info/rake-10.3.2.info +1 -0
  13. data/gems/ruby/2.1.0/cache/git_repository-0.0.11.gem +0 -0
  14. data/gems/ruby/2.1.0/cache/httparty-0.13.1.gem +0 -0
  15. data/gems/ruby/2.1.0/cache/multi_xml-0.5.5.gem +0 -0
  16. data/gems/ruby/2.1.0/cache/rake-10.3.2.gem +0 -0
  17. data/gems/ruby/2.1.0/gems/git_repository-0.0.11/lib/git_repository.rb +62 -0
  18. data/gems/ruby/2.1.0/gems/httparty-0.13.1/.gitignore +10 -0
  19. data/gems/ruby/2.1.0/gems/httparty-0.13.1/.travis.yml +7 -0
  20. data/gems/ruby/2.1.0/gems/httparty-0.13.1/Gemfile +14 -0
  21. data/gems/ruby/2.1.0/gems/httparty-0.13.1/Guardfile +16 -0
  22. data/gems/ruby/2.1.0/gems/httparty-0.13.1/History +303 -0
  23. data/gems/ruby/2.1.0/gems/httparty-0.13.1/MIT-LICENSE +20 -0
  24. data/gems/ruby/2.1.0/gems/httparty-0.13.1/README.md +74 -0
  25. data/gems/ruby/2.1.0/gems/httparty-0.13.1/Rakefile +12 -0
  26. data/gems/ruby/2.1.0/gems/httparty-0.13.1/bin/httparty +117 -0
  27. data/gems/ruby/2.1.0/gems/httparty-0.13.1/cucumber.yml +1 -0
  28. data/gems/ruby/2.1.0/gems/httparty-0.13.1/examples/aaws.rb +32 -0
  29. data/gems/ruby/2.1.0/gems/httparty-0.13.1/examples/basic.rb +28 -0
  30. data/gems/ruby/2.1.0/gems/httparty-0.13.1/examples/crack.rb +19 -0
  31. data/gems/ruby/2.1.0/gems/httparty-0.13.1/examples/custom_parsers.rb +67 -0
  32. data/gems/ruby/2.1.0/gems/httparty-0.13.1/examples/delicious.rb +37 -0
  33. data/gems/ruby/2.1.0/gems/httparty-0.13.1/examples/google.rb +16 -0
  34. data/gems/ruby/2.1.0/gems/httparty-0.13.1/examples/headers_and_user_agents.rb +6 -0
  35. data/gems/ruby/2.1.0/gems/httparty-0.13.1/examples/nokogiri_html_parser.rb +22 -0
  36. data/gems/ruby/2.1.0/gems/httparty-0.13.1/examples/rubyurl.rb +14 -0
  37. data/gems/ruby/2.1.0/gems/httparty-0.13.1/examples/stackexchange.rb +24 -0
  38. data/gems/ruby/2.1.0/gems/httparty-0.13.1/examples/tripit_sign_in.rb +33 -0
  39. data/gems/ruby/2.1.0/gems/httparty-0.13.1/examples/twitter.rb +31 -0
  40. data/gems/ruby/2.1.0/gems/httparty-0.13.1/examples/whoismyrep.rb +10 -0
  41. data/gems/ruby/2.1.0/gems/httparty-0.13.1/features/basic_authentication.feature +20 -0
  42. data/gems/ruby/2.1.0/gems/httparty-0.13.1/features/command_line.feature +7 -0
  43. data/gems/ruby/2.1.0/gems/httparty-0.13.1/features/deals_with_http_error_codes.feature +26 -0
  44. data/gems/ruby/2.1.0/gems/httparty-0.13.1/features/digest_authentication.feature +20 -0
  45. data/gems/ruby/2.1.0/gems/httparty-0.13.1/features/handles_compressed_responses.feature +27 -0
  46. data/gems/ruby/2.1.0/gems/httparty-0.13.1/features/handles_multiple_formats.feature +57 -0
  47. data/gems/ruby/2.1.0/gems/httparty-0.13.1/features/steps/env.rb +22 -0
  48. data/gems/ruby/2.1.0/gems/httparty-0.13.1/features/steps/httparty_response_steps.rb +52 -0
  49. data/gems/ruby/2.1.0/gems/httparty-0.13.1/features/steps/httparty_steps.rb +43 -0
  50. data/gems/ruby/2.1.0/gems/httparty-0.13.1/features/steps/mongrel_helper.rb +94 -0
  51. data/gems/ruby/2.1.0/gems/httparty-0.13.1/features/steps/remote_service_steps.rb +74 -0
  52. data/gems/ruby/2.1.0/gems/httparty-0.13.1/features/supports_read_timeout_option.feature +13 -0
  53. data/gems/ruby/2.1.0/gems/httparty-0.13.1/features/supports_redirection.feature +22 -0
  54. data/gems/ruby/2.1.0/gems/httparty-0.13.1/features/supports_timeout_option.feature +13 -0
  55. data/gems/ruby/2.1.0/gems/httparty-0.13.1/httparty.gemspec +26 -0
  56. data/gems/ruby/2.1.0/gems/httparty-0.13.1/lib/httparty.rb +600 -0
  57. data/gems/ruby/2.1.0/gems/httparty-0.13.1/lib/httparty/connection_adapter.rb +187 -0
  58. data/gems/ruby/2.1.0/gems/httparty-0.13.1/lib/httparty/cookie_hash.rb +22 -0
  59. data/gems/ruby/2.1.0/gems/httparty-0.13.1/lib/httparty/core_extensions.rb +32 -0
  60. data/gems/ruby/2.1.0/gems/httparty-0.13.1/lib/httparty/exceptions.rb +29 -0
  61. data/gems/ruby/2.1.0/gems/httparty-0.13.1/lib/httparty/hash_conversions.rb +51 -0
  62. data/gems/ruby/2.1.0/gems/httparty-0.13.1/lib/httparty/logger/apache_logger.rb +22 -0
  63. data/gems/ruby/2.1.0/gems/httparty-0.13.1/lib/httparty/logger/curl_logger.rb +48 -0
  64. data/gems/ruby/2.1.0/gems/httparty-0.13.1/lib/httparty/logger/logger.rb +18 -0
  65. data/gems/ruby/2.1.0/gems/httparty-0.13.1/lib/httparty/module_inheritable_attributes.rb +56 -0
  66. data/gems/ruby/2.1.0/gems/httparty-0.13.1/lib/httparty/net_digest_auth.rb +84 -0
  67. data/gems/ruby/2.1.0/gems/httparty-0.13.1/lib/httparty/parser.rb +141 -0
  68. data/gems/ruby/2.1.0/gems/httparty-0.13.1/lib/httparty/request.rb +331 -0
  69. data/gems/ruby/2.1.0/gems/httparty-0.13.1/lib/httparty/response.rb +72 -0
  70. data/gems/ruby/2.1.0/gems/httparty-0.13.1/lib/httparty/response/headers.rb +31 -0
  71. data/gems/ruby/2.1.0/gems/httparty-0.13.1/lib/httparty/version.rb +3 -0
  72. data/gems/ruby/2.1.0/gems/httparty-0.13.1/script/release +42 -0
  73. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/fixtures/delicious.xml +23 -0
  74. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/fixtures/empty.xml +0 -0
  75. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/fixtures/google.html +3 -0
  76. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/fixtures/ssl/generate.sh +29 -0
  77. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/fixtures/ssl/generated/1fe462c2.0 +16 -0
  78. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/fixtures/ssl/generated/bogushost.crt +13 -0
  79. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/fixtures/ssl/generated/ca.crt +16 -0
  80. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/fixtures/ssl/generated/ca.key +15 -0
  81. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/fixtures/ssl/generated/selfsigned.crt +14 -0
  82. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/fixtures/ssl/generated/server.crt +13 -0
  83. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/fixtures/ssl/generated/server.key +15 -0
  84. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/fixtures/ssl/openssl-exts.cnf +9 -0
  85. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/fixtures/twitter.csv +2 -0
  86. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/fixtures/twitter.json +1 -0
  87. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/fixtures/twitter.xml +403 -0
  88. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/fixtures/undefined_method_add_node_for_nil.xml +2 -0
  89. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/httparty/connection_adapter_spec.rb +354 -0
  90. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/httparty/cookie_hash_spec.rb +83 -0
  91. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/httparty/exception_spec.rb +23 -0
  92. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/httparty/logger/apache_logger_spec.rb +26 -0
  93. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/httparty/logger/curl_logger_spec.rb +18 -0
  94. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/httparty/logger/logger_spec.rb +22 -0
  95. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/httparty/net_digest_auth_spec.rb +152 -0
  96. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/httparty/parser_spec.rb +165 -0
  97. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/httparty/request_spec.rb +638 -0
  98. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/httparty/response_spec.rb +221 -0
  99. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/httparty/ssl_spec.rb +74 -0
  100. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/httparty_spec.rb +764 -0
  101. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/spec.opts +2 -0
  102. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/spec_helper.rb +37 -0
  103. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/support/ssl_test_helper.rb +47 -0
  104. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/support/ssl_test_server.rb +80 -0
  105. data/gems/ruby/2.1.0/gems/httparty-0.13.1/spec/support/stub_response.rb +43 -0
  106. data/gems/ruby/2.1.0/gems/httparty-0.13.1/website/css/common.css +47 -0
  107. data/gems/ruby/2.1.0/gems/httparty-0.13.1/website/index.html +73 -0
  108. data/gems/ruby/2.1.0/gems/multi_xml-0.5.5/.yardopts +8 -0
  109. data/gems/ruby/2.1.0/gems/multi_xml-0.5.5/CHANGELOG.md +93 -0
  110. data/gems/ruby/2.1.0/gems/multi_xml-0.5.5/CONTRIBUTING.md +49 -0
  111. data/gems/ruby/2.1.0/gems/multi_xml-0.5.5/LICENSE.md +20 -0
  112. data/gems/ruby/2.1.0/gems/multi_xml-0.5.5/README.md +97 -0
  113. data/gems/ruby/2.1.0/gems/multi_xml-0.5.5/Rakefile +21 -0
  114. data/gems/ruby/2.1.0/gems/multi_xml-0.5.5/lib/multi_xml.rb +296 -0
  115. data/gems/ruby/2.1.0/gems/multi_xml-0.5.5/lib/multi_xml/parsers/libxml.rb +30 -0
  116. data/gems/ruby/2.1.0/gems/multi_xml-0.5.5/lib/multi_xml/parsers/libxml2_parser.rb +74 -0
  117. data/gems/ruby/2.1.0/gems/multi_xml-0.5.5/lib/multi_xml/parsers/nokogiri.rb +32 -0
  118. data/gems/ruby/2.1.0/gems/multi_xml-0.5.5/lib/multi_xml/parsers/ox.rb +97 -0
  119. data/gems/ruby/2.1.0/gems/multi_xml-0.5.5/lib/multi_xml/parsers/rexml.rb +113 -0
  120. data/gems/ruby/2.1.0/gems/multi_xml-0.5.5/lib/multi_xml/version.rb +3 -0
  121. data/gems/ruby/2.1.0/gems/multi_xml-0.5.5/multi_xml.gemspec +24 -0
  122. data/gems/ruby/2.1.0/gems/multi_xml-0.5.5/spec/helper.rb +17 -0
  123. data/gems/ruby/2.1.0/gems/multi_xml-0.5.5/spec/multi_xml_spec.rb +43 -0
  124. data/gems/ruby/2.1.0/gems/multi_xml-0.5.5/spec/parser_shared_example.rb +694 -0
  125. data/gems/ruby/2.1.0/gems/multi_xml-0.5.5/spec/speed.rb +63 -0
  126. data/gems/ruby/2.1.0/gems/rake-10.3.2/.autotest +7 -0
  127. data/gems/ruby/2.1.0/gems/rake-10.3.2/.gemtest +0 -0
  128. data/gems/ruby/2.1.0/gems/rake-10.3.2/.rubocop.yml +27 -0
  129. data/gems/ruby/2.1.0/gems/rake-10.3.2/.togglerc +7 -0
  130. data/gems/ruby/2.1.0/gems/rake-10.3.2/CONTRIBUTING.rdoc +34 -0
  131. data/gems/ruby/2.1.0/gems/rake-10.3.2/History.rdoc +609 -0
  132. data/gems/ruby/2.1.0/gems/rake-10.3.2/MIT-LICENSE +21 -0
  133. data/gems/ruby/2.1.0/gems/rake-10.3.2/Manifest.txt +162 -0
  134. data/gems/ruby/2.1.0/gems/rake-10.3.2/README.rdoc +137 -0
  135. data/gems/ruby/2.1.0/gems/rake-10.3.2/Rakefile +81 -0
  136. data/gems/ruby/2.1.0/gems/rake-10.3.2/bin/rake +33 -0
  137. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/command_line_usage.rdoc +158 -0
  138. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/example/Rakefile1 +38 -0
  139. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/example/Rakefile2 +35 -0
  140. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/example/a.c +6 -0
  141. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/example/b.c +6 -0
  142. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/example/main.c +11 -0
  143. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/glossary.rdoc +43 -0
  144. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/jamis.rb +591 -0
  145. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/proto_rake.rdoc +127 -0
  146. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/rake.1.gz +0 -0
  147. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/rakefile.rdoc +653 -0
  148. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/rational.rdoc +151 -0
  149. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.4.14.rdoc +23 -0
  150. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.4.15.rdoc +35 -0
  151. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.5.0.rdoc +53 -0
  152. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.5.3.rdoc +78 -0
  153. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.5.4.rdoc +46 -0
  154. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.6.0.rdoc +141 -0
  155. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.7.0.rdoc +119 -0
  156. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.7.1.rdoc +59 -0
  157. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.7.2.rdoc +121 -0
  158. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.7.3.rdoc +47 -0
  159. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.8.0.rdoc +114 -0
  160. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.8.2.rdoc +165 -0
  161. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.8.3.rdoc +112 -0
  162. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.8.4.rdoc +147 -0
  163. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.8.5.rdoc +53 -0
  164. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.8.6.rdoc +37 -0
  165. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.8.7.rdoc +55 -0
  166. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.9.0.rdoc +112 -0
  167. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.9.1.rdoc +52 -0
  168. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.9.2.2.rdoc +55 -0
  169. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.9.2.rdoc +49 -0
  170. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.9.3.rdoc +102 -0
  171. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.9.4.rdoc +60 -0
  172. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.9.5.rdoc +55 -0
  173. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-0.9.6.rdoc +64 -0
  174. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-10.0.0.rdoc +178 -0
  175. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-10.0.1.rdoc +58 -0
  176. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-10.0.2.rdoc +53 -0
  177. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-10.0.3.rdoc +191 -0
  178. data/gems/ruby/2.1.0/gems/rake-10.3.2/doc/release_notes/rake-10.1.0.rdoc +61 -0
  179. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake.rb +78 -0
  180. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/alt_system.rb +110 -0
  181. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/application.rb +783 -0
  182. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/backtrace.rb +23 -0
  183. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/clean.rb +76 -0
  184. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/cloneable.rb +16 -0
  185. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/contrib/.document +0 -0
  186. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/contrib/compositepublisher.rb +21 -0
  187. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/contrib/ftptools.rb +137 -0
  188. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/contrib/publisher.rb +81 -0
  189. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/contrib/rubyforgepublisher.rb +18 -0
  190. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/contrib/sshpublisher.rb +61 -0
  191. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/contrib/sys.rb +4 -0
  192. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/cpu_counter.rb +109 -0
  193. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/default_loader.rb +14 -0
  194. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/dsl_definition.rb +198 -0
  195. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/early_time.rb +21 -0
  196. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/ext/core.rb +25 -0
  197. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/ext/module.rb +1 -0
  198. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/ext/string.rb +173 -0
  199. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/ext/time.rb +15 -0
  200. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/file_creation_task.rb +24 -0
  201. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/file_list.rb +414 -0
  202. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/file_task.rb +46 -0
  203. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/file_utils.rb +116 -0
  204. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/file_utils_ext.rb +144 -0
  205. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/gempackagetask.rb +4 -0
  206. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/invocation_chain.rb +56 -0
  207. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/invocation_exception_mixin.rb +16 -0
  208. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/linked_list.rb +103 -0
  209. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/loaders/makefile.rb +40 -0
  210. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/multi_task.rb +13 -0
  211. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/name_space.rb +38 -0
  212. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/packagetask.rb +202 -0
  213. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/pathmap.rb +3 -0
  214. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/phony.rb +15 -0
  215. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/private_reader.rb +20 -0
  216. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/promise.rb +99 -0
  217. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/pseudo_status.rb +29 -0
  218. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/rake_module.rb +38 -0
  219. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/rake_test_loader.rb +22 -0
  220. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/rdoctask.rb +4 -0
  221. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/ruby182_test_unit_fix.rb +29 -0
  222. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/rule_recursion_overflow_error.rb +20 -0
  223. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/runtest.rb +27 -0
  224. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/scope.rb +42 -0
  225. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/task.rb +383 -0
  226. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/task_argument_error.rb +7 -0
  227. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/task_arguments.rb +98 -0
  228. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/task_manager.rb +310 -0
  229. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/tasklib.rb +24 -0
  230. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/testtask.rb +212 -0
  231. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/thread_history_display.rb +48 -0
  232. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/thread_pool.rb +164 -0
  233. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/trace_output.rb +22 -0
  234. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/version.rb +7 -0
  235. data/gems/ruby/2.1.0/gems/rake-10.3.2/lib/rake/win32.rb +56 -0
  236. data/gems/ruby/2.1.0/gems/rake-10.3.2/rakelib/publish.rake +20 -0
  237. data/gems/ruby/2.1.0/gems/rake-10.3.2/rakelib/test_times.rake +25 -0
  238. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/file_creation.rb +34 -0
  239. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/helper.rb +127 -0
  240. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/support/rakefile_definitions.rb +478 -0
  241. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/support/ruby_runner.rb +33 -0
  242. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_private_reader.rb +42 -0
  243. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake.rb +40 -0
  244. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_application.rb +641 -0
  245. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_application_options.rb +466 -0
  246. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_backtrace.rb +119 -0
  247. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_clean.rb +55 -0
  248. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_cpu_counter.rb +50 -0
  249. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_definitions.rb +79 -0
  250. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_directory_task.rb +63 -0
  251. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_dsl.rb +40 -0
  252. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_early_time.rb +31 -0
  253. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_extension.rb +59 -0
  254. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_file_creation_task.rb +56 -0
  255. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_file_list.rb +627 -0
  256. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_file_list_path_map.rb +8 -0
  257. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_file_task.rb +186 -0
  258. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_file_utils.rb +309 -0
  259. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_ftp_file.rb +74 -0
  260. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_functional.rb +482 -0
  261. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_invocation_chain.rb +64 -0
  262. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_linked_list.rb +84 -0
  263. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_makefile_loader.rb +46 -0
  264. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_multi_task.rb +58 -0
  265. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_name_space.rb +57 -0
  266. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_package_task.rb +79 -0
  267. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_path_map.rb +168 -0
  268. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_path_map_explode.rb +34 -0
  269. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_path_map_partial.rb +18 -0
  270. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_pseudo_status.rb +21 -0
  271. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_rake_test_loader.rb +20 -0
  272. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_reduce_compat.rb +26 -0
  273. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_require.rb +40 -0
  274. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_rules.rb +388 -0
  275. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_scope.rb +44 -0
  276. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_task.rb +392 -0
  277. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_task_argument_parsing.rb +109 -0
  278. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_task_arguments.rb +127 -0
  279. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_task_lib.rb +9 -0
  280. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_task_manager.rb +178 -0
  281. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_task_manager_argument_resolution.rb +19 -0
  282. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_task_with_arguments.rb +171 -0
  283. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_test_task.rb +141 -0
  284. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_thread_pool.rb +142 -0
  285. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_top_level_functions.rb +71 -0
  286. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_rake_win32.rb +72 -0
  287. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_thread_history_display.rb +101 -0
  288. data/gems/ruby/2.1.0/gems/rake-10.3.2/test/test_trace_output.rb +52 -0
  289. data/gems/ruby/2.1.0/specifications/git_repository-0.0.11.gemspec +16 -0
  290. data/gems/ruby/2.1.0/specifications/httparty-0.13.1.gemspec +36 -0
  291. data/gems/ruby/2.1.0/specifications/multi_xml-0.5.5.gemspec +31 -0
  292. data/gems/ruby/2.1.0/specifications/rake-10.3.2.gemspec +43 -0
  293. data/rakefile.rb +33 -0
  294. data/src/APIClient.rb +23 -0
  295. data/test/test_git_repository_commit.rb +19 -0
  296. metadata +395 -0
@@ -0,0 +1,191 @@
1
+ = Rake 10.0.3 Released
2
+
3
+ "Jim, when will Rake reach version 1.0?"
4
+
5
+ Over the past several years I've been asked that question at
6
+ conferences, panels and over twitter. Due to historical reasons (or
7
+ maybe just plain laziness) Rake has (incorrectly) been treating the
8
+ second digit of the version as the major release number. So in my head
9
+ Rake was already at version 9.
10
+
11
+ Well, it's time to fix things. This next version of Rake drops old,
12
+ crufty, backwards compatibility hacks such as top level constants, DSL
13
+ methods defined in Object and numerous other features that are just no
14
+ longer desired. It's also time to drop the leading zero from the
15
+ version number as well and call this new version of rake what it
16
+ really is: Version 10.
17
+
18
+ So, welcome to Rake 10.0!
19
+
20
+ Rake 10 is actually feature identical to the latest version of Rake 9
21
+ (that would be the version spelled 0.9.3), *except* that Rake 10 drops
22
+ all the sundry deprecated features that have accumulated over the years.
23
+
24
+ If your Rakefile is up to date and current with all the new features
25
+ of Rake 10, you are ready to go. If your Rakefile still uses a few
26
+ deprecated feeatures, feel free to use Rake 9 (0.9.3) with the same
27
+ feature set. Just be aware that future features will be in Rake 10
28
+ family line.
29
+
30
+ == Changes in Version 10
31
+
32
+ As mentioned above, there are no new features in Rake 10. However,
33
+ there are a number of features missing:
34
+
35
+ * Classic namespaces are now gone. Rake is no longer able to reflect
36
+ the options settings in the global variables ($rakefile, $show_tasks,
37
+ $show_prereqs, $trace, $dryrun and $silent). The
38
+ <tt>--classic-namespace</tt> option is no longer supported.
39
+
40
+ * Global constants are no longer supported. This includes
41
+ <tt>Task</tt>, <tt>FileTask</tt>, <tt>FileCreationTask</tt> and
42
+ <tt>RakeApp</tt>). The constant missing hook to warn about using
43
+ global rake constants has been removed.
44
+
45
+ * The Rake DSL methods (task, file, directory, etc) are in their own
46
+ module (Rake::DSL). The stub versions of these methods (that printed
47
+ warnings) in Object have been removed. However, the DSL methods are
48
+ added to the top-level <tt>main</tt> object. Since <tt>main</tt> is
49
+ not in the inheritance tree, the presence of the DSL methods in main
50
+ should be low impact on other libraries.
51
+
52
+ If you want to use the Rake DSL commands from your own code, just
53
+ include <tt>Rake::DSL</tt> into your own classes and modules.
54
+
55
+ * The deprecated syntax for task arguments (the one using
56
+ <tt>:needs</tt>) has been removed.
57
+
58
+ * The <tt>--reduce-compat</tt> flag has been removed (it's not needed
59
+ anymore).
60
+
61
+ * The deprecated <tt>rake/sys.rb</tt> library has been removed.
62
+
63
+ * The deprecated <tt>rake/rdoctask.rb</tt> library has been removed.
64
+ RDoc supplies its own rake task now.
65
+
66
+ * The deprecated <tt>rake/gempackagetask.rb</tt> library has been
67
+ removed. Gem supplies its own package task now.
68
+
69
+ There is one small behavioral change:
70
+
71
+ * Non-file tasks now always report the current time as their time
72
+ stamp. This is different from the previous behavior where non-file
73
+ tasks reported current time only if there were no prerequisites, and
74
+ the max prerequisite timestamp otherwise. This lead to inconsistent
75
+ and surprising behavior when adding prerequisites to tasks that in
76
+ turn were prequisites to file tasks. The new behavior is more
77
+ consistent and predictable.
78
+
79
+ == Changes (from 0.9.3, 0.9.4, 0.9.5)
80
+
81
+ Since Rake 10 includes the changes from the last version of Rake 9,
82
+ we'll repeat the changes for versions 0.9.3 through 0.9.5 here.
83
+
84
+ === New Features (in 0.9.3)
85
+
86
+ * Multitask tasks now use a thread pool. Use -j to limit the number of
87
+ available threads.
88
+
89
+ * Use -m to turn regular tasks into multitasks (use at your own risk).
90
+
91
+ * You can now do "Rake.add_rakelib 'dir'" in your Rakefile to
92
+ programatically add rake task libraries.
93
+
94
+ * You can specific backtrace suppression patterns (see
95
+ --supress-backtrace)
96
+
97
+ * Directory tasks can now take prerequisites and actions
98
+
99
+ * Use --backtrace to request a full backtrace without the task trace.
100
+
101
+ * You can say "--backtrace=stdout" and "--trace=stdout" to route trace
102
+ output to standard output rather than standard error.
103
+
104
+ * Optional 'phony' target (enable with 'require 'rake/phony'") for
105
+ special purpose builds.
106
+
107
+ * Task#clear now clears task comments as well as actions and
108
+ prerequisites. Task#clear_comment will specifically target comments.
109
+
110
+ * The --all option will force -T and -D to consider all the tasks,
111
+ with and without descriptions.
112
+
113
+ === Bug Fixes (in 0.9.3)
114
+
115
+ * Semi-colons in windows rakefile paths now work.
116
+
117
+ * Improved Control-C support when invoking multiple test suites.
118
+
119
+ * egrep method now reads files in text mode (better support for
120
+ Windows)
121
+
122
+ * Better deprecation line number reporting.
123
+
124
+ * The -W option now works with all tasks, whether they have a
125
+ description or not.
126
+
127
+ * File globs in rake should not be sorted alphabetically, independent
128
+ of file system and platform.
129
+
130
+ * Numerous internal improvements.
131
+
132
+ * Documentation typos and fixes.
133
+
134
+ === Bug Fixes (in 0.9.4)
135
+
136
+ * Exit status with failing tests is not correctly set to non-zero.
137
+
138
+ * Simplified syntax for phony task (for older versions of RDoc).
139
+
140
+ * Stand alone FileList usage gets glob function (without loading in
141
+ extra dependencies)
142
+
143
+ === Bug Fixes (in 0.9.5)
144
+
145
+ * --trace and --backtrace no longer swallow following task names.
146
+
147
+ == What is Rake
148
+
149
+ Rake is a build tool similar to the make program in many ways. But
150
+ instead of cryptic make recipes, Rake uses standard Ruby code to
151
+ declare tasks and dependencies. You have the full power of a modern
152
+ scripting language built right into your build tool.
153
+
154
+ == Availability
155
+
156
+ The easiest way to get and install rake is via RubyGems ...
157
+
158
+ gem install rake (you may need root/admin privileges)
159
+
160
+ Otherwise, you can get it from the more traditional places:
161
+
162
+ Home Page:: http://github.com/jimweirich/rake
163
+ Download:: http://rubyforge.org/project/showfiles.php?group_id=50
164
+ GitHub:: git://github.com/jimweirich/rake.git
165
+
166
+ == Thanks
167
+
168
+ As usual, it was input from users that drove a lot of these changes. The
169
+ following people contributed patches, made suggestions or made
170
+ otherwise helpful comments. Thanks to ...
171
+
172
+ * Aaron Patterson
173
+ * Dylan Smith
174
+ * Jo Liss
175
+ * Jonas Pfenniger
176
+ * Kazuki Tsujimoto
177
+ * Michael Bishop
178
+ * Michael Elufimov
179
+ * NAKAMURA Usaku
180
+ * Ryan Davis
181
+ * Sam Grönblom
182
+ * Sam Phippen
183
+ * Sergio Wong
184
+ * Tay Ray Chuan
185
+ * grosser
186
+ * quix
187
+
188
+ Also, many thanks to Eric Hodel for assisting with getting this release
189
+ out the door.
190
+
191
+ -- Jim Weirich
@@ -0,0 +1,61 @@
1
+ = Rake 10.1.0 Released
2
+
3
+ == Changes in Version 10.1
4
+
5
+ === New Features
6
+
7
+ * Add support for variable length task argument lists. If more actual
8
+ arguments are supplied than named arguments, then the extra
9
+ arguments values will be in args.extras.
10
+
11
+ * Application name is not displayed in the help banner. (Previously
12
+ "rake" was hardcoded, now rake-based applications can display their
13
+ own names).
14
+
15
+ === Bug Fixes
16
+
17
+ Bug fixes include:
18
+
19
+ * Fix backtrace suppression issues.
20
+
21
+ * Rules now explicit get task arguments passed to them.
22
+
23
+ * Rename FileList#exclude? to FileList#exclude_from_list? to avoid
24
+ conflict with new Rails method.
25
+
26
+ * Clean / Clobber tasks now report failure to remove files.
27
+
28
+ * Plus heaps of internal code cleanup.
29
+
30
+ == What is Rake
31
+
32
+ Rake is a build tool similar to the make program in many ways. But
33
+ instead of cryptic make recipes, Rake uses standard Ruby code to
34
+ declare tasks and dependencies. You have the full power of a modern
35
+ scripting language built right into your build tool.
36
+
37
+ == Availability
38
+
39
+ The easiest way to get and install rake is via RubyGems ...
40
+
41
+ gem install rake (you may need root/admin privileges)
42
+
43
+ Otherwise, you can get it from the more from GitHub:
44
+
45
+ GitHub:: git://github.com/jimweirich/rake.git
46
+
47
+ == Thanks
48
+
49
+ As usual, it was input from users that drove a lot of these changes.
50
+ The following people contributed patches, made suggestions or made
51
+ otherwise helpful comments. Thanks to ...
52
+
53
+ * Michael Nikitochkin (general code cleanup)
54
+ * Vipul A M (general code cleanup)
55
+ * Dennis Bell (variable length task argument lists)
56
+ * Jacob Swanner (rules arguments)
57
+ * Rafael Rosa Fu (documentation typo)
58
+ * Stuart Nelson (install.rb fixes)
59
+ * Lee Hambley (application name in help banner)
60
+
61
+ -- Jim Weirich
@@ -0,0 +1,78 @@
1
+ #--
2
+ # Copyright 2003-2010 by Jim Weirich (jim.weirich@gmail.com)
3
+ #
4
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ # of this software and associated documentation files (the "Software"), to
6
+ # deal in the Software without restriction, including without limitation the
7
+ # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
8
+ # sell copies of the Software, and to permit persons to whom the Software is
9
+ # furnished to do so, subject to the following conditions:
10
+ #
11
+ # The above copyright notice and this permission notice shall be included in
12
+ # all copies or substantial portions of the Software.
13
+ #
14
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19
+ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
20
+ # IN THE SOFTWARE.
21
+ #++
22
+
23
+ module Rake
24
+ VERSION = '10.3.2'
25
+ end
26
+
27
+ require 'rake/version'
28
+
29
+ # :stopdoc:
30
+ # TODO: Remove in Rake 11
31
+ RAKEVERSION = Rake::VERSION
32
+ # :startdoc:
33
+
34
+ require 'rbconfig'
35
+ require 'fileutils'
36
+ require 'singleton'
37
+ require 'monitor'
38
+ require 'optparse'
39
+ require 'ostruct'
40
+
41
+ require 'rake/ext/module'
42
+ require 'rake/ext/string'
43
+ require 'rake/ext/time'
44
+
45
+ require 'rake/win32'
46
+
47
+ require 'rake/linked_list'
48
+ require 'rake/cpu_counter'
49
+ require 'rake/scope'
50
+ require 'rake/task_argument_error'
51
+ require 'rake/rule_recursion_overflow_error'
52
+ require 'rake/rake_module'
53
+ require 'rake/trace_output'
54
+ require 'rake/pseudo_status'
55
+ require 'rake/task_arguments'
56
+ require 'rake/invocation_chain'
57
+ require 'rake/task'
58
+ require 'rake/file_task'
59
+ require 'rake/file_creation_task'
60
+ require 'rake/multi_task'
61
+ require 'rake/dsl_definition'
62
+ require 'rake/file_utils_ext'
63
+ require 'rake/file_list'
64
+ require 'rake/default_loader'
65
+ require 'rake/early_time'
66
+ require 'rake/name_space'
67
+ require 'rake/task_manager'
68
+ require 'rake/application'
69
+ require 'rake/backtrace'
70
+
71
+ $trace = false
72
+
73
+ # :stopdoc:
74
+ #
75
+ # Some top level Constants.
76
+
77
+ FileList = Rake::FileList
78
+ RakeFileUtils = Rake::FileUtilsExt
@@ -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,783 @@
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
+ handle_options
87
+ collect_command_line_tasks
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.
620
+ def handle_options # :nodoc:
621
+ options.rakelib = ['rakelib']
622
+ options.trace_output = $stderr
623
+
624
+ OptionParser.new do |opts|
625
+ opts.banner = "#{Rake.application.name} [-f rakefile] {options} targets..."
626
+ opts.separator ""
627
+ opts.separator "Options are ..."
628
+
629
+ opts.on_tail("-h", "--help", "-H", "Display this help message.") do
630
+ puts opts
631
+ exit
632
+ end
633
+
634
+ standard_rake_options.each { |args| opts.on(*args) }
635
+ opts.environment('RAKEOPT')
636
+ end.parse!
637
+ end
638
+
639
+ # Similar to the regular Ruby +require+ command, but will check
640
+ # for *.rake files in addition to *.rb files.
641
+ def rake_require(file_name, paths=$LOAD_PATH, loaded=$") # :nodoc:
642
+ fn = file_name + ".rake"
643
+ return false if loaded.include?(fn)
644
+ paths.each do |path|
645
+ full_path = File.join(path, fn)
646
+ if File.exist?(full_path)
647
+ Rake.load_rakefile(full_path)
648
+ loaded << fn
649
+ return true
650
+ end
651
+ end
652
+ fail LoadError, "Can't find #{file_name}"
653
+ end
654
+
655
+ def find_rakefile_location # :nodoc:
656
+ here = Dir.pwd
657
+ until (fn = have_rakefile)
658
+ Dir.chdir("..")
659
+ return nil if Dir.pwd == here || options.nosearch
660
+ here = Dir.pwd
661
+ end
662
+ [fn, here]
663
+ ensure
664
+ Dir.chdir(Rake.original_dir)
665
+ end
666
+
667
+ def print_rakefile_directory(location) # :nodoc:
668
+ $stderr.puts "(in #{Dir.pwd})" unless
669
+ options.silent or original_dir == location
670
+ end
671
+
672
+ def raw_load_rakefile # :nodoc:
673
+ rakefile, location = find_rakefile_location
674
+ if (! options.ignore_system) &&
675
+ (options.load_system || rakefile.nil?) &&
676
+ system_dir && File.directory?(system_dir)
677
+ print_rakefile_directory(location)
678
+ glob("#{system_dir}/*.rake") do |name|
679
+ add_import name
680
+ end
681
+ else
682
+ fail "No Rakefile found (looking for: #{@rakefiles.join(', ')})" if
683
+ rakefile.nil?
684
+ @rakefile = rakefile
685
+ Dir.chdir(location)
686
+ print_rakefile_directory(location)
687
+ Rake.load_rakefile(File.expand_path(@rakefile)) if
688
+ @rakefile && @rakefile != ''
689
+ options.rakelib.each do |rlib|
690
+ glob("#{rlib}/*.rake") do |name|
691
+ add_import name
692
+ end
693
+ end
694
+ end
695
+ load_imports
696
+ end
697
+
698
+ def glob(path, &block) # :nodoc:
699
+ FileList.glob(path.gsub("\\", '/')).each(&block)
700
+ end
701
+ private :glob
702
+
703
+ # The directory path containing the system wide rakefiles.
704
+ def system_dir # :nodoc:
705
+ @system_dir ||=
706
+ begin
707
+ if ENV['RAKE_SYSTEM']
708
+ ENV['RAKE_SYSTEM']
709
+ else
710
+ standard_system_dir
711
+ end
712
+ end
713
+ end
714
+
715
+ # The standard directory containing system wide rake files.
716
+ if Win32.windows?
717
+ def standard_system_dir #:nodoc:
718
+ Win32.win32_system_dir
719
+ end
720
+ else
721
+ def standard_system_dir #:nodoc:
722
+ File.join(File.expand_path('~'), '.rake')
723
+ end
724
+ end
725
+ private :standard_system_dir
726
+
727
+ # Collect the list of tasks on the command line. If no tasks are
728
+ # given, return a list containing only the default task.
729
+ # Environmental assignments are processed at this time as well.
730
+ def collect_command_line_tasks # :nodoc:
731
+ @top_level_tasks = []
732
+ ARGV.each do |arg|
733
+ if arg =~ /^(\w+)=(.*)$/m
734
+ ENV[$1] = $2
735
+ else
736
+ @top_level_tasks << arg unless arg =~ /^-/
737
+ end
738
+ end
739
+ @top_level_tasks.push(default_task_name) if @top_level_tasks.empty?
740
+ end
741
+
742
+ # Default task name ("default").
743
+ # (May be overridden by subclasses)
744
+ def default_task_name # :nodoc:
745
+ "default"
746
+ end
747
+
748
+ # Add a file to the list of files to be imported.
749
+ def add_import(fn) # :nodoc:
750
+ @pending_imports << fn
751
+ end
752
+
753
+ # Load the pending list of imported files.
754
+ def load_imports # :nodoc:
755
+ while fn = @pending_imports.shift
756
+ next if @imported.member?(fn)
757
+ fn_task = lookup(fn) and fn_task.invoke
758
+ ext = File.extname(fn)
759
+ loader = @loaders[ext] || @default_loader
760
+ loader.load(fn)
761
+ if fn_task = lookup(fn) and fn_task.needed?
762
+ fn_task.reenable
763
+ fn_task.invoke
764
+ loader.load(fn)
765
+ end
766
+ @imported << fn
767
+ end
768
+ end
769
+
770
+ def rakefile_location(backtrace=caller) # :nodoc:
771
+ backtrace.map { |t| t[/([^:]+):/, 1] }
772
+
773
+ re = /^#{@rakefile}$/
774
+ re = /#{re.source}/i if windows?
775
+
776
+ backtrace.find { |str| str =~ re } || ''
777
+ end
778
+
779
+ private
780
+ FIXNUM_MAX = (2**(0.size * 8 - 2) - 1) # :nodoc:
781
+
782
+ end
783
+ end