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,63 @@
1
+ #!/usr/bin/env ruby -wW1
2
+
3
+ $: << '.'
4
+ $: << '../lib'
5
+
6
+ if __FILE__ == $0
7
+ while (i = ARGV.index('-I'))
8
+ x,path = ARGV.slice!(i, 2)
9
+ $: << path
10
+ end
11
+ end
12
+
13
+ require 'optparse'
14
+ require 'stringio'
15
+ require 'multi_xml'
16
+
17
+ begin
18
+ require 'libxml'
19
+ rescue Exception => e
20
+ end
21
+ begin
22
+ require 'nokogiri'
23
+ rescue Exception => e
24
+ end
25
+ begin
26
+ require 'ox'
27
+ rescue Exception => e
28
+ end
29
+
30
+ $verbose = 0
31
+ $parsers = []
32
+ $iter = 10
33
+
34
+ opts = OptionParser.new
35
+ opts.on("-v", "increase verbosity") { $verbose += 1 }
36
+ opts.on("-p", "--parser [String]", String, "parser to test") { |p| $parsers = [p] }
37
+ opts.on("-i", "--iterations [Int]", Integer, "iterations") { |i| $iter = i }
38
+ opts.on("-h", "--help", "Show this display") { puts opts; Process.exit!(0) }
39
+ files = opts.parse(ARGV)
40
+
41
+ if $parsers.empty?
42
+ $parsers << 'libxml' if defined?(::LibXML)
43
+ $parsers << 'nokogiri' if defined?(::Nokogiri)
44
+ $parsers << 'ox' if defined?(::Ox)
45
+ end
46
+
47
+ files.each do |filename|
48
+ times = { }
49
+ xml = File.read(filename)
50
+ $parsers.each do |p|
51
+ MultiXml.parser = p
52
+ start = Time.now
53
+ $iter.times do |i|
54
+ io = StringIO.new(xml)
55
+ MultiXml.parse(io)
56
+ end
57
+ dt = Time.now - start
58
+ times[p] = Time.now - start
59
+ end
60
+ times.each do |p,t|
61
+ puts "%8s took %0.3f seconds to parse %s %d times." % [p, t, filename, $iter]
62
+ end
63
+ end
@@ -0,0 +1,7 @@
1
+ require 'autotest/restart'
2
+
3
+ Autotest.add_hook :initialize do |at|
4
+ at.testlib = ''
5
+ at.add_exception '.git'
6
+ end
7
+
File without changes
@@ -0,0 +1,27 @@
1
+ StringLiterals:
2
+ Enabled: false
3
+
4
+ MultilineBlocks:
5
+ Enabled: false
6
+
7
+ SingleLineBlocks:
8
+ Enabled: false
9
+
10
+ NewLambdaLiteral:
11
+ Enabled: false
12
+
13
+ SpaceAroundEqualsInParameterDefault:
14
+ Enabled: false
15
+
16
+ HashSyntax:
17
+ Enabled: false
18
+
19
+ LineLength:
20
+ Enabled: true
21
+ Max: 90
22
+
23
+ WhileUntilModifier:
24
+ Enabled: false
25
+
26
+ IfUnlessModifier:
27
+ Enabled: false
@@ -0,0 +1,7 @@
1
+ (add-to-list
2
+ 'toggle-mapping-styles
3
+ '(rake . (
4
+ ("test/test_rake_\\1.rb" . "lib/rake/\\1.rb")
5
+ ) ))
6
+
7
+ (buffer-toggle-style 'rake)
@@ -0,0 +1,34 @@
1
+ = Source Repository
2
+
3
+ Rake is currently hosted at github. The github web page is
4
+ http://github.com/jimweirich/rake . The public git clone URL is
5
+
6
+ git://github.com/jimweirich/rake.git
7
+
8
+ = Running the Rake Test Suite
9
+
10
+ If you wish to run the unit and functional tests that come with Rake:
11
+
12
+ * CD into the top project directory of rake.
13
+ * Type one of the following:
14
+
15
+ rake newb # If you have never run rake's tests
16
+ rake # If you have run rake's tests
17
+
18
+ = Issues and Bug Reports
19
+
20
+ Feel free to submit commits or feature requests. If you send a patch,
21
+ remember to update the corresponding unit tests. In fact, I prefer
22
+ new feature to be submitted in the form of new unit tests.
23
+
24
+ For other information, feel free to ask on the ruby-talk mailing list.
25
+
26
+ If you have found a bug in rake please try with the latest version of rake
27
+ before filing an issue. Also check History.rdoc for bug fixes that may have
28
+ addressed your issue.
29
+
30
+ When submitting pull requests please check the rake Travis-CI page for test
31
+ failures:
32
+
33
+ https://travis-ci.org/jimweirich/rake
34
+
@@ -0,0 +1,609 @@
1
+ === 10.3.2 / 2014-05-15
2
+
3
+ Bug fixes:
4
+
5
+ * Rake no longer infinitely loops when showing exception causes that refer to
6
+ each other. Bug #272 by Chris Bandy.
7
+ * Fixed documentation typos. Bug #275 by Jake Worth.
8
+
9
+ === 10.3.1 / 2014-04-17
10
+
11
+ Bug fixes:
12
+
13
+ * Really stop reporting an error when cleaning already-deleted files. Pull
14
+ request #269 by Randy Coulman
15
+ * Fixed infinite loop when cleaning already-deleted files on windows.
16
+
17
+ === 10.3 / 2014-04-15
18
+
19
+ Enhancements:
20
+
21
+ * Added --build-all option to rake which treats all file prerequisites as
22
+ out-of-date. Pull request #254 by Andrew Gilbert.
23
+ * Added Rake::NameSpace#scope. Issue #263 by Jon San Miguel.
24
+
25
+ Bug fixes:
26
+
27
+ * Suppress org.jruby package files in rake error messages for JRuby users.
28
+ Issue #213 by Charles Nutter.
29
+ * Fixed typo, removed extra "h". Pull request #267 by Hsing-Hui Hsu.
30
+ * Rake no longer reports an error when cleaning already-deleted files. Pull
31
+ request #266 by Randy Coulman.
32
+ * Consume stderr while determining CPU count to avoid hang. Issue #268 by
33
+ Albert Sun.
34
+
35
+ === 10.2.2 / 2014-03-27
36
+
37
+ Bug fixes:
38
+
39
+ * Restored Ruby 1.8.7 compatibility
40
+
41
+ === 10.2.1 / 2014-03-25
42
+
43
+ Bug fixes:
44
+
45
+ * File tasks including a ':' are now top-level tasks again. Issue #262 by
46
+ Josh Holtrop.
47
+ * Use sysctl for CPU count for all BSDs. Pull request #261 by Joshua Stein.
48
+ * Fixed CPU detection for unknown platforms.
49
+
50
+ === 10.2.0 / 2014-03-24
51
+
52
+ Enhancements:
53
+
54
+ * Rake now requires Ruby 1.9 or newer. For me, this is a breaking change, but
55
+ it seems that Jim planned to release it with Rake 10.2. See also pull
56
+ request #247 by Philip Arndt.
57
+ * Rake now allows you to declare tasks under a namespace like:
58
+
59
+ task 'a:b' do ... end
60
+
61
+ Pull request #232 by Judson Lester.
62
+ * Task#source defaults to the first prerequisite in non-rule tasks. Pull
63
+ request #215 by Avdi Grimm.
64
+ * Rake now automatically rebuilds and reloads imported files. Pull request
65
+ #209 by Randy Coulman.
66
+ * The rake task arguments can contain escaped commas. Pull request #214 by
67
+ Filip Hrbek.
68
+ * Rake now prints the exception class on errors. Patch #251 by David Cornu.
69
+
70
+ Bug fixes:
71
+
72
+ * Fixed typos. Pull request #256 by Valera Rozuvan, #250 via Jake Worth, #260
73
+ by Zachary Scott.
74
+ * Fixed documentation for calling tasks with arguments. Pull request #235 by
75
+ John Varghese.
76
+ * Clarified `rake -f` usage message. Pull request #252 by Marco Pfatschbacher.
77
+ * Fixed a test failure on windows. Pull request #231 by Hiroshi Shirosaki.
78
+ * Fixed corrupted rake.1.gz. Pull request #225 by Michel Boaventura.
79
+ * Fixed bug in can_detect_signals? in test. Patch from #243 by Alexey
80
+ Borzenkov.
81
+
82
+ === 10.1.1 and earlier
83
+
84
+ Additions to the old CHANGES file were not made consistently so some
85
+ versions are missing from this file. These changes are usually described in
86
+ the individual release notes files.
87
+
88
+ === 0.9.3
89
+
90
+ * The rake test loader now removes arguments it has processed. Issue #51
91
+ * Rake::TaskArguments now responds to #values_at
92
+ * RakeFileUtils.verbose_flag = nil silences output the same as 0.8.7
93
+ * Rake tests are now directory-independent
94
+ * Rake tests are no longer require flexmock
95
+ * Commands constant is no longer polluting top level namespace.
96
+ * Show only the interesting portion of the backtrace by default (James M. Lawrence).
97
+ * Added --reduce-compat optiont to remove backward compatible DSL hacks (James M. Lawrence).
98
+ * lib/rake/file_list.rb (Rake::FileList#egrep): there is no need to
99
+ open files in binary mode. (NAKAMURA Usaku)
100
+
101
+ === 0.9.2
102
+
103
+ * Unknown
104
+
105
+ === 0.9.1
106
+
107
+ * Added deprecation warnings to the Rake DSL methods.
108
+
109
+ === 0.9.0
110
+
111
+ * *Incompatible* *change*: Rake DSL commands ('task', 'file', etc.) are
112
+ no longer private methods in Object. If you need to call 'task :xzy' inside
113
+ your class, include Rake::DSL into the class. The DSL is still available at
114
+ the top level scope (via the top level object which extends Rake::DSL).
115
+
116
+ * Rake now warns when the deprecated :needs syntax used.
117
+
118
+ * Rake history is now UTF-8 encoded.
119
+
120
+ * Rake now uses case-insensitive comparisons to find the Rakefile on Windows.
121
+ Based on patch by Roger Pack.
122
+
123
+ * Rake now requires (instead of loads) files in the test task. Patch by Cezary
124
+ Baginski.
125
+
126
+ * Fixed typos. Patches by Sean Scot August Moon and R.T. Lechow.
127
+
128
+ * Rake now prints the Rakefile directory only when it's different from the
129
+ current directory. Patch by Alex Chaffee.
130
+
131
+ * Improved rakefile_location discovery on Windows. Patch by James Tucker.
132
+
133
+ * Rake now recognizes "Windows Server" as a windows system. Patch by Matthias
134
+ Lüdtke
135
+
136
+ * Rake::RDocTask is deprecated. Use RDoc::Task from RDoc 2.4.2+ (require
137
+ 'rdoc/task')
138
+
139
+ * Rake::GemPackageTask is deprecated. Use Gem::PackageTask (require
140
+ 'rubygems/package_task')
141
+
142
+ * Rake now outputs various messages to $stderr instead of $stdout.
143
+
144
+ * Rake no longer emits warnings for Config. Patch by Santiago Pastorino.
145
+
146
+ * Split rake.rb into individual files.
147
+
148
+ * Support for the --where (-W) flag for showing where a task is defined.
149
+
150
+ * Fixed quoting in test task.
151
+ (http://onestepback.org/redmine/issues/show/44,
152
+ http://www.pivotaltracker.com/story/show/1223138)
153
+
154
+ * Fixed the silent option parsing problem.
155
+ (http://onestepback.org/redmine/issues/show/47)
156
+
157
+ * Fixed :verbose=>false flag on sh and ruby commands.
158
+
159
+ * Rake command line options may be given by default in a RAKEOPT
160
+ environment variable.
161
+
162
+ * Errors in Rake will now display the task invocation chain in effect
163
+ at the time of the error.
164
+
165
+ * Accepted change by warnickr to not expand test patterns in shell
166
+ (allowing more files in the test suite).
167
+
168
+ * Fixed that file tasks did not perform prereq lookups in scope
169
+ (Redmine #57).
170
+
171
+ === 0.8.7
172
+
173
+ * Fixed EXEEXT for JRuby on windows.
174
+
175
+ === 0.8.6
176
+
177
+ * Minor fixes to the RDoc generation (removed dependency on darkfish
178
+ and removed inline source option).
179
+
180
+ * Now allow # comments to comment a task definition.
181
+
182
+ === 0.8.5
183
+
184
+ * Better support for the system command on Windows.
185
+
186
+ === 0.8.4
187
+
188
+ * Preserve case when locating rakefiles (patch from James
189
+ M. Lawrence/quix)
190
+
191
+ * Better support for windows paths in the test task (patch from Simon
192
+ Chiang/bahuvrihi)
193
+
194
+ * Windows system dir search order is now: HOME, HOMEDRIVE + HOMEPATH,
195
+ APPDATA, USERPROFILE (patch from Luis Lavena)
196
+
197
+ * MingGW is now recognized as a windows platform. (patch from Luis
198
+ Lavena)
199
+
200
+ * Numerous fixes to the windows test suite (patch from Luis Lavena).
201
+
202
+ * Improved Rakefile case insensitivity testing (patch from Luis
203
+ Lavena).
204
+
205
+ * Fixed stray ARGV option problem that was interfering with
206
+ Test::Unit::Runner.
207
+
208
+ * Fixed default verbose mode (was accidently changed to false).
209
+
210
+ * Removed reference to manage_gem to fix the warning produced by the
211
+ gem package task.
212
+
213
+ === 0.8.3
214
+
215
+ * Enhanced the system directory detection in windows. We now check
216
+ HOMEDRIVE/HOMEPATH and USERPROFILE if APPDATA isn't found. (Patch
217
+ supplied by James Tucker). Rake no long aborts if it can't find the
218
+ directory.
219
+
220
+ * Added fix to handle ruby installations in directories with spaces in
221
+ their name.
222
+
223
+ === 0.8.2
224
+
225
+ * Fixed bug in package task so that it will include the subdir
226
+ directory in the package for testing. (Bug found by Adam Majer)
227
+
228
+ * Added ENV var to rakefile to prevent OS X from including extended
229
+ attribute junk in a tar file. (Bug found by Adam Majer)
230
+
231
+ * Fixed filename dependency order bug in test_inspect_pending and
232
+ test_to_s_pending. (Bug found by Adam Majer)
233
+
234
+ * Fixed check for file utils options to make them immune to the
235
+ symbol/string differences. (Patch supplied by Edwin Pratomo)
236
+
237
+ * Fixed bug with rules involving multiple source (Patch supplied by
238
+ Emanuel Indermühle)
239
+
240
+ * Switched from getoptlong to optparse (patches supplied by Edwin
241
+ Pratomo)
242
+
243
+ * The -T option will now attempt to dynamically sense the size of the
244
+ terminal. RAKE_COLUMNS will override any dynamic sensing.
245
+
246
+ * FileList#clone and FileList#dup have better sematics w.r.t. taint
247
+ and freeze.
248
+
249
+ * Added ability clear prerequisites, and/or actions from an existing
250
+ task.
251
+
252
+ * Added the ability to reenable a task to be invoked a second time.
253
+
254
+ * Changed RDoc test task to have no default template. This makes it
255
+ easier for the tempate to pick up the template from the environment.
256
+
257
+ * Changed from using Mutex to Monitor. Evidently Mutex causes thread
258
+ join errors when Ruby is compiled with -disable-pthreads. (Patch
259
+ supplied by Ittay Dror)
260
+
261
+ * Fixed bug in makefile parser that had problems with extra spaces in
262
+ file task names. (Patch supplied by Ittay Dror)
263
+
264
+ * Added a performance patch for reading large makefile dependency
265
+ files. (Patch supplied by Ittay Dror)
266
+
267
+ * Default values for task arguments can easily be specified with the
268
+ :with_defaults method. (Idea for default argument merging supplied
269
+ by (Adam Q. Salter)
270
+
271
+ * The -T output will only self-truncate if the output is a tty.
272
+ However, if RAKE_COLUMNS is explicitly set, it will be honored in
273
+ any case. (Patch provided by Gavin Stark).
274
+
275
+ * Numerous fixes for running under windows. A big thanks to Bheeshmar
276
+ Redheendran for spending a good part of the afternoon at the
277
+ Lonestar Ruby Conference to help me work out these issues.
278
+
279
+ === 0.8.1
280
+
281
+ * Removed requires on parsedate.rb (in Ftptools)
282
+ * Removed ftools from rake.rb. Made it options in sys.rb
283
+
284
+ === 0.8.0
285
+
286
+ * Added task parameters (e.g. "rake build[version7]")
287
+ * Made task parameters passable to prerequisites.
288
+ * Comments are limited to 80 columns or so (suggested by Jamis Buck).
289
+ * Added -D to display full comments (suggested by Jamis Buck).
290
+ * The rake program will set the status value used in any explicit
291
+ exit(n) calls. (patch provided by Stephen Touset)
292
+ * Fixed error in functional tests that were not including session (and
293
+ silently skipping the functionl tests.
294
+ * Removed --usage and make -h the same as -H.
295
+ * Make a prettier inspect for tasks.
296
+
297
+ === 0.7.3
298
+
299
+ * Added existing and existing! methods to FileList
300
+ * FileLists now claim to be Arrays (via is_a?) to get better support
301
+ from the FileUtil module.
302
+ * Added init and top_level for custom rake applications.
303
+
304
+ === 0.7.2
305
+
306
+ * Error messages are now send to stderr rather than stdout (from
307
+ Payton Quackenbush).
308
+ * Better error handling on invalid command line arguments (from Payton
309
+ Quackenbush).
310
+ * Added rcov task and updated unit testing for better code coverage.
311
+ * Fixed some bugs where the application object was going to the global
312
+ appliation instead of using its own data.
313
+ * Added square and curly bracket patterns to FileList#include (Tilman
314
+ Sauerbeck).
315
+ * Added plain filename support to rule dependents (suggested by Nobu
316
+ Nakada).
317
+ * Added pathmap support to rule dependents.
318
+ * Added a 'tasks' method to a namespace to get a list of tasks
319
+ associated with the namespace.
320
+ * Fixed the method name leak from FileUtils (bug found by Glenn
321
+ Vanderburg).
322
+ * Added rake_extension to handle detection of extension collisions.
323
+ * Added test for noop, bad_option and verbose flags to sh command.
324
+ * Removed dependency on internal fu_xxx functions from FileUtils.
325
+ * Added a 'shame' task to the Rakefile.
326
+ * Added tar_command and zip_command options to the Package task.
327
+ * Added a description to the gem task in GemPackageTask.
328
+ * Fixed a bug when rules have multiple prerequisites (patch by Joel
329
+ VanderWerf)
330
+ * Added a protected 'require "rubygems"' to test/test_application to
331
+ unbreak cruisecontrol.rb.
332
+ * Added the handful of RakeFileUtils to the private method as well.
333
+ * Added block based exclusion.
334
+ * The clean task will no longer delete 'core' if it is a directory.
335
+ * Removed rake_dup. Now we just simply rescue a bad dup.
336
+ * Refactored the FileList reject logic to remove duplication.
337
+ * Removed if __FILE__ at the end of the rake.rb file.
338
+
339
+ === 0.7.1
340
+
341
+ * Added optional filter parameter to the --tasks command line option.
342
+ * Added flatten to allow rule transform procs to return lists of
343
+ prereqs (Joel VanderWerf provided patch).
344
+ * Added pathmap to String and FileList.
345
+ * The -r option will now load .rake files (but a straight require
346
+ doesn't yet). NOTE: This is experimental ... it may be
347
+ discontinued.
348
+ * The -f option without a value will disable the search for a
349
+ Rakefile. The assumption is that the -r files are adequate.
350
+ * Fixed the safe_ln function to fall back to cp in more error
351
+ scenarios.
352
+
353
+ === 0.7.0
354
+
355
+ * Added Rake.original_dir to return the original starting directory of
356
+ the rake application.
357
+ * Added safe_ln support for openAFS (from Ludvig Omholt).
358
+ * Added --trace reminder on short exception messages (David Heinemeier
359
+ Hansson suggestion).
360
+ * Added multitask declaration that executes prerequisites in
361
+ parallel. (Doug Young providied an initial implementation).
362
+ * Fixed missing_const hack to be compatible with Rails. (Jamis Buck
363
+ supplied test case).
364
+ * Made the RDoc task default to internal (in-process) RDoc formatting.
365
+ The old behavior is still available by setting the +external+ flag
366
+ to true.
367
+ * Rakefiles are now loaded with the expanded path to prevent
368
+ accidental polution from the Ruby load path.
369
+ * The +namespace+ command now returns a NameSpace object that can be
370
+ used to lookup tasks defined in that namespace. This allows for
371
+ better anonymous namespace behavior.
372
+ * Task objects my now be used in prerequisite lists directly.
373
+
374
+ === 0.6.1
375
+
376
+ * Rebuilt 0.6.0 gem without signing.
377
+
378
+ === 0.6.0
379
+
380
+ * Fixed file creation bug in the unit tests (caused infinite loop on
381
+ windows).
382
+ * Fixed bug where session based functional tests were run under
383
+ windows.
384
+ * Fixed bug in directory tasks so that updating a directory will not
385
+ retrigger file tasks depending on the directory (see
386
+ FileCreationTask and EarlyTime).
387
+ * Added egrep to FileList
388
+ * ruby command now runs same ruby version as rake.
389
+ * Added investigation to task object. (suggested by Martin Fowler)
390
+ * Added ruby_opts to the test task to allow arbitrary ruby options to
391
+ be passed to the test script. (Greg Fast)
392
+ * Fixed the test loader to ignore options. (Greg Fast)
393
+ * Moved Task, FileTask, FileCreationTask and RakeApp into the Rake
394
+ module namespace. Old style namespace behavior can be invoked via
395
+ the --classic-namespace option. (requested by Kelly Felkins).
396
+ * GemTask is now sensitive to the gem platform (Masao Mutoh).
397
+ * A non-existing file prerequisite will no longer cause an exception
398
+ (Philipp Neubeck).
399
+ * Multiple prerequisites on Rake rules now allowed (initial patch
400
+ supplied by Stuart Jansen).
401
+
402
+ === 0.5.4
403
+
404
+ * Added double quotes to the test runner.
405
+ * Added .svn to default ignore list.
406
+ * Updated FileList#include to support nested arrays and filelists.
407
+
408
+ === 0.5.3
409
+
410
+ * Added support for importing Rakefile and other dependencies.
411
+ * Fixed bug so that now rules can chain off of existing tasks as well
412
+ as existing files.
413
+ * Fixed verbose flag bug in the testing task. Shortened some failure
414
+ messages.
415
+ * Make FileUtils methods private at the top level module to avoid
416
+ accidental method leaking into other objects.
417
+ * Added test loader option to test task. "testrb" is no longer the
418
+ default test loader. It is now eating syntax errors that should
419
+ halt the unit tests.
420
+ * Revamped FileList so that it works more like and array (addressed
421
+ flatten bug). Added many tests around file list.
422
+ * Added +ext+ method to both String and FileList.
423
+
424
+ === 0.5.0
425
+
426
+ * Fixed documentation that was lacking the Rake module name (Tilman
427
+ Sauerbeck).
428
+ * Added tar.gz and tar.bz2 support to package task (Tilman Sauerbeck).
429
+ * Recursive rules are now supported (Tilman Sauerbeck).
430
+ * Added warning option for the Test Task (requested by Eric Hodel).
431
+ * The jamis rdoc template is only used if it exists.
432
+ * Added fix for Ruby 1.8.2 test/unit and rails problem.
433
+ * Added contributed rake man file (Jani Monoses).
434
+ * Added Brian Candler's fix for problems in --trace and --dry-run
435
+ mode.
436
+
437
+ === 0.4.15
438
+
439
+ * Fixed a bug that prevented the TESTOPTS flag from working with the
440
+ revised for 1.8.2 test task.
441
+ * Updated the docs on --trace to indicate that it also enables a full
442
+ backtrace on errors.
443
+
444
+ === 0.4.14
445
+
446
+ * Modified the TestTask to workaround the Ruby 1.8.2 change in
447
+ autoexecuting unit tests.
448
+
449
+ === 0.4.13
450
+
451
+ * Fixed the dry-run flag so it is operating again.
452
+ * Multiple arguments to sh and ruby commands will not be interpreted
453
+ by the shell (patch provided by Jonathan Paisley).
454
+
455
+ === 0.4.12
456
+
457
+ * Added --silent (-s) to suppress the (in directory) rake message.
458
+
459
+ === 0.4.11
460
+
461
+ * Changed the "don't know how to rake" message (finally)
462
+ * Changes references to a literal "Rakefile" to reference the global
463
+ variable $rakefile (which contains the actual name of the rakefile).
464
+
465
+ === 0.4.10
466
+
467
+ * Added block support to the "sh" command, allowing users to take
468
+ special actions on the result of the system call. E.g.
469
+
470
+ sh "shell_command" do |ok, res|
471
+ puts "Program returned #{res.exitstatus}" if ! ok
472
+ end
473
+
474
+ === 0.4.9
475
+
476
+ * Switched to Jamis Buck's RDoc template.
477
+ * Removed autorequire from Rake's gem spec. This prevents the Rake
478
+ libraries from loading while using rails.
479
+
480
+ === 0.4.8
481
+
482
+ * Added support for .rb versions of Rakefile.
483
+ * Removed \\\n's from test task.
484
+ * Fixed Ruby 1.9 compatibility issue with FileList.
485
+
486
+ === 0.4.7
487
+
488
+ * Fixed problem in FileList that caused Ruby 1.9 to go into infinite
489
+ recursion. Since to_a was removed from Object, it does not need to
490
+ added back into the list of methods to rewrite in FileList. (Thanks
491
+ to Kent Sibilev for pointing this out).
492
+
493
+ === 0.4.6
494
+ * Removed test version of ln in FileUtils that prevented safe_ln from
495
+ using ln.
496
+
497
+ === 0.4.5
498
+ * Upgraded comments in TestTask.
499
+ * FileList to_s and inspect now automatically resolve pending changes.
500
+ * FileList#exclude properly returns the FileList.
501
+
502
+ === 0.4.4
503
+ * Fixed initialization problem with @comment.
504
+ * Now using multi -r technique in TestTask. Switch Rakefile back to
505
+ using the built-in test task macros because the rake runtime is no
506
+ longer needed.
507
+ * Added 'TEST=filename' and 'TESTOPTS=options' to the Test Task
508
+ macros.
509
+ * Allow a +test_files+ attribute in test tasks. This allows more
510
+ flexibility in specifying test files.
511
+
512
+ === 0.4.3
513
+ * Fixed Comment leakage.
514
+
515
+ === 0.4.2
516
+ * Added safe_ln that falls back to a copy if a file link is not supported.
517
+ * Package builder now uses safe_ln.
518
+
519
+ === 0.4.1
520
+ * Task comments are now additive, combined with "/".
521
+ * Works with (soon to be released) rubygems 0.6.2 (or 0.7.0)
522
+
523
+ === 0.4.0
524
+ * FileList now uses deferred loading. The file system is not searched
525
+ until the first call that needs the file names.
526
+ * VAR=VALUE options are now accepted on the command line and are
527
+ treated like environment variables. The values may be tested in a
528
+ Rakefile by referencing ENV['VAR'].
529
+ * File.mtime is now used (instead of File.new().mtime).
530
+
531
+ === 0.3.2.x
532
+
533
+ * Removed some hidden dependencies on rubygems. Tests now will test
534
+ gems only if they are installed.
535
+ * Removed Sys from some example files. I believe that is that last
536
+ reference to Sys outside of the contrib area.
537
+ * Updated all copyright notices to include 2004.
538
+
539
+ === 0.3.2
540
+
541
+ * GEM Installation now works with the application stub.
542
+
543
+ === 0.3.1
544
+
545
+ * FileLists now automatically ignore CVS, .bak, !
546
+ * GEM Installation now works.
547
+
548
+ === 0.3.0
549
+
550
+ Promoted 0.2.10.
551
+
552
+ === 0.2.10
553
+ General
554
+
555
+ * Added title to Rake's rdocs
556
+ * Contrib packages are no longer included in the documentation.
557
+
558
+ RDoc Issues
559
+
560
+ * Removed default for the '--main' option
561
+ * Fixed rendering of the rdoc options
562
+ * Fixed clean/clobber confusion with rerdoc
563
+ * 'title' attribute added
564
+
565
+ Package Task Library Issues
566
+
567
+ * Version (or explicit :noversion) is required.
568
+ * +package_file+ attribute is now writable
569
+
570
+ FileList Issues
571
+
572
+ * Dropped bang version of exclude. Now using ant-like include/exclude semantics.
573
+ * Enabled the "yield self" idiom in FileList#initialize.
574
+
575
+ === 0.2.9
576
+
577
+ This version contains numerous changes as the RubyConf.new(2003)
578
+ presentation was being prepared. The changes include:
579
+
580
+ * The monolithic rubyapp task library is in the process of being
581
+ dropped in favor of lighter weight task libraries.
582
+
583
+ === 0.2.7
584
+
585
+ * Added "desc" for task descriptions.
586
+ * -T will now display tasks with descriptions.
587
+ * -P will display tasks and prerequisites.
588
+ * Dropped the Sys module in favor of the 1.8.x FileUtils module. Sys
589
+ is still supported in the contrib area.
590
+
591
+ === 0.2.6
592
+
593
+ * Moved to RubyForge
594
+
595
+ === 0.2.5
596
+
597
+ * Switched to standard ruby app builder.
598
+ * Added no_match option to file matcher.
599
+
600
+ === 0.2.4
601
+
602
+ * Fixed indir, which neglected to actually change directories.
603
+
604
+ === 0.2.3
605
+
606
+ * Added rake module for a help target
607
+ * Added 'for_files' to Sys
608
+ * Added a $rakefile constant
609
+ * Added test for selecting proper rule with multiple targets.