plyom_user 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (265) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/plyom_user/version.rb +1 -1
  4. data/lib/plyom_user.rb +4 -3
  5. data/vendor/bundle/ruby/2.0.0/bin/httparty +23 -0
  6. data/vendor/bundle/ruby/2.0.0/bin/rake +23 -0
  7. data/vendor/bundle/ruby/2.0.0/build_info/httparty-0.11.0.info +1 -0
  8. data/vendor/bundle/ruby/2.0.0/build_info/multi_json-1.8.2.info +1 -0
  9. data/vendor/bundle/ruby/2.0.0/build_info/multi_xml-0.5.5.info +1 -0
  10. data/vendor/bundle/ruby/2.0.0/build_info/rake-10.1.1.info +1 -0
  11. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/.gitignore +10 -0
  12. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/.travis.yml +9 -0
  13. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/Gemfile +15 -0
  14. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/Guardfile +16 -0
  15. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/History +303 -0
  16. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/MIT-LICENSE +20 -0
  17. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/README.md +79 -0
  18. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/Rakefile +15 -0
  19. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/bin/httparty +114 -0
  20. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/cucumber.yml +1 -0
  21. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/examples/aaws.rb +32 -0
  22. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/examples/basic.rb +32 -0
  23. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/examples/crack.rb +19 -0
  24. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/examples/custom_parsers.rb +67 -0
  25. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/examples/delicious.rb +37 -0
  26. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/examples/google.rb +16 -0
  27. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/examples/headers_and_user_agents.rb +6 -0
  28. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/examples/nokogiri_html_parser.rb +22 -0
  29. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/examples/rubyurl.rb +14 -0
  30. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/examples/tripit_sign_in.rb +33 -0
  31. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/examples/twitter.rb +31 -0
  32. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/examples/whoismyrep.rb +10 -0
  33. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/features/basic_authentication.feature +20 -0
  34. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/features/command_line.feature +7 -0
  35. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/features/deals_with_http_error_codes.feature +26 -0
  36. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/features/digest_authentication.feature +20 -0
  37. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/features/handles_compressed_responses.feature +19 -0
  38. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/features/handles_multiple_formats.feature +34 -0
  39. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/features/steps/env.rb +22 -0
  40. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/features/steps/httparty_response_steps.rb +40 -0
  41. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/features/steps/httparty_steps.rb +27 -0
  42. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/features/steps/mongrel_helper.rb +94 -0
  43. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/features/steps/remote_service_steps.rb +69 -0
  44. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/features/supports_redirection.feature +22 -0
  45. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/features/supports_timeout_option.feature +13 -0
  46. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/httparty.gemspec +24 -0
  47. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty/connection_adapter.rb +134 -0
  48. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty/cookie_hash.rb +22 -0
  49. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty/core_extensions.rb +32 -0
  50. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty/exceptions.rb +26 -0
  51. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty/hash_conversions.rb +51 -0
  52. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty/module_inheritable_attributes.rb +56 -0
  53. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty/net_digest_auth.rb +84 -0
  54. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty/parser.rb +139 -0
  55. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty/request.rb +250 -0
  56. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty/response/headers.rb +31 -0
  57. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty/response.rb +67 -0
  58. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty/version.rb +3 -0
  59. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/lib/httparty.rb +534 -0
  60. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/fixtures/delicious.xml +23 -0
  61. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/fixtures/empty.xml +0 -0
  62. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/fixtures/google.html +3 -0
  63. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/fixtures/ssl/generate.sh +29 -0
  64. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/fixtures/ssl/generated/1fe462c2.0 +16 -0
  65. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/fixtures/ssl/generated/bogushost.crt +13 -0
  66. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/fixtures/ssl/generated/ca.crt +16 -0
  67. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/fixtures/ssl/generated/ca.key +15 -0
  68. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/fixtures/ssl/generated/selfsigned.crt +14 -0
  69. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/fixtures/ssl/generated/server.crt +13 -0
  70. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/fixtures/ssl/generated/server.key +15 -0
  71. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/fixtures/ssl/openssl-exts.cnf +9 -0
  72. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/fixtures/twitter.json +1 -0
  73. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/fixtures/twitter.xml +403 -0
  74. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/fixtures/undefined_method_add_node_for_nil.xml +2 -0
  75. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/httparty/connection_adapter_spec.rb +223 -0
  76. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/httparty/cookie_hash_spec.rb +76 -0
  77. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/httparty/net_digest_auth_spec.rb +115 -0
  78. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/httparty/parser_spec.rb +166 -0
  79. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/httparty/request_spec.rb +514 -0
  80. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/httparty/response_spec.rb +221 -0
  81. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/httparty/ssl_spec.rb +62 -0
  82. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/httparty_spec.rb +733 -0
  83. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/spec.opts +2 -0
  84. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/spec_helper.rb +30 -0
  85. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/support/ssl_test_helper.rb +47 -0
  86. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/support/ssl_test_server.rb +80 -0
  87. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/spec/support/stub_response.rb +43 -0
  88. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/website/css/common.css +47 -0
  89. data/vendor/bundle/ruby/2.0.0/gems/httparty-0.11.0/website/index.html +73 -0
  90. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/.document +5 -0
  91. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/.rspec +2 -0
  92. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/.travis.yml +16 -0
  93. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/.yardopts +6 -0
  94. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/CHANGELOG.md +185 -0
  95. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/CONTRIBUTING.md +46 -0
  96. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/Gemfile +30 -0
  97. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/LICENSE.md +20 -0
  98. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/README.md +108 -0
  99. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/Rakefile +25 -0
  100. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/lib/multi_json/adapter.rb +57 -0
  101. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/lib/multi_json/adapters/gson.rb +19 -0
  102. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/lib/multi_json/adapters/jr_jackson.rb +19 -0
  103. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/lib/multi_json/adapters/json_common.rb +25 -0
  104. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/lib/multi_json/adapters/json_gem.rb +11 -0
  105. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/lib/multi_json/adapters/json_pure.rb +11 -0
  106. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/lib/multi_json/adapters/nsjsonserialization.rb +34 -0
  107. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/lib/multi_json/adapters/oj.rb +24 -0
  108. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/lib/multi_json/adapters/ok_json.rb +24 -0
  109. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/lib/multi_json/adapters/yajl.rb +19 -0
  110. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/lib/multi_json/convertible_hash_keys.rb +43 -0
  111. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/lib/multi_json/load_error.rb +11 -0
  112. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/lib/multi_json/options.rb +48 -0
  113. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/lib/multi_json/vendor/okjson.rb +606 -0
  114. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/lib/multi_json/version.rb +20 -0
  115. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/lib/multi_json.rb +159 -0
  116. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/multi_json.gemspec +22 -0
  117. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/spec/gson_adapter_spec.rb +10 -0
  118. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/spec/jr_jackson_adapter_spec.rb +10 -0
  119. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/spec/json_gem_adapter_spec.rb +9 -0
  120. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/spec/json_pure_adapter_spec.rb +9 -0
  121. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/spec/multi_json_spec.rb +193 -0
  122. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/spec/nsjsonserialization_adapter_spec.rb +10 -0
  123. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/spec/oj_adapter_spec.rb +10 -0
  124. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/spec/ok_json_adapter_spec.rb +7 -0
  125. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/spec/shared/adapter.rb +230 -0
  126. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/spec/shared/json_common_adapter.rb +30 -0
  127. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/spec/shared/options.rb +119 -0
  128. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/spec/spec_helper.rb +73 -0
  129. data/vendor/bundle/ruby/2.0.0/gems/multi_json-1.8.2/spec/yajl_adapter_spec.rb +10 -0
  130. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/.yardopts +8 -0
  131. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/CHANGELOG.md +93 -0
  132. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/CONTRIBUTING.md +49 -0
  133. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/LICENSE.md +20 -0
  134. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/README.md +97 -0
  135. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/Rakefile +21 -0
  136. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/lib/multi_xml/parsers/libxml.rb +30 -0
  137. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/lib/multi_xml/parsers/libxml2_parser.rb +74 -0
  138. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/lib/multi_xml/parsers/nokogiri.rb +32 -0
  139. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/lib/multi_xml/parsers/ox.rb +97 -0
  140. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/lib/multi_xml/parsers/rexml.rb +113 -0
  141. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/lib/multi_xml/version.rb +3 -0
  142. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/lib/multi_xml.rb +296 -0
  143. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/multi_xml.gemspec +24 -0
  144. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/spec/helper.rb +17 -0
  145. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/spec/multi_xml_spec.rb +43 -0
  146. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/spec/parser_shared_example.rb +694 -0
  147. data/vendor/bundle/ruby/2.0.0/gems/multi_xml-0.5.5/spec/speed.rb +63 -0
  148. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/.gemtest +0 -0
  149. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/CHANGES +530 -0
  150. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/MIT-LICENSE +21 -0
  151. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/README.rdoc +187 -0
  152. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/Rakefile +374 -0
  153. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/TODO +21 -0
  154. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/bin/rake +33 -0
  155. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/install.rb +80 -0
  156. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/alt_system.rb +108 -0
  157. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/application.rb +728 -0
  158. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/backtrace.rb +20 -0
  159. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/clean.rb +55 -0
  160. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/cloneable.rb +16 -0
  161. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/contrib/compositepublisher.rb +21 -0
  162. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/contrib/ftptools.rb +139 -0
  163. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/contrib/publisher.rb +73 -0
  164. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/contrib/rubyforgepublisher.rb +16 -0
  165. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/contrib/sshpublisher.rb +50 -0
  166. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/contrib/sys.rb +2 -0
  167. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/default_loader.rb +10 -0
  168. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/dsl_definition.rb +157 -0
  169. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/early_time.rb +18 -0
  170. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/ext/core.rb +28 -0
  171. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/ext/module.rb +0 -0
  172. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/ext/string.rb +166 -0
  173. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/ext/time.rb +15 -0
  174. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/file_creation_task.rb +24 -0
  175. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/file_list.rb +416 -0
  176. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/file_task.rb +46 -0
  177. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/file_utils.rb +116 -0
  178. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/file_utils_ext.rb +144 -0
  179. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/gempackagetask.rb +2 -0
  180. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/invocation_chain.rb +57 -0
  181. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/invocation_exception_mixin.rb +16 -0
  182. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/linked_list.rb +103 -0
  183. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/loaders/makefile.rb +40 -0
  184. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/multi_task.rb +13 -0
  185. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/name_space.rb +25 -0
  186. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/packagetask.rb +190 -0
  187. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/pathmap.rb +1 -0
  188. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/phony.rb +15 -0
  189. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/private_reader.rb +20 -0
  190. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/promise.rb +99 -0
  191. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/pseudo_status.rb +29 -0
  192. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/rake_module.rb +37 -0
  193. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/rake_test_loader.rb +22 -0
  194. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/rdoctask.rb +2 -0
  195. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/ruby182_test_unit_fix.rb +27 -0
  196. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/rule_recursion_overflow_error.rb +20 -0
  197. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/runtest.rb +22 -0
  198. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/scope.rb +42 -0
  199. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/task.rb +378 -0
  200. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/task_argument_error.rb +7 -0
  201. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/task_arguments.rb +89 -0
  202. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/task_manager.rb +297 -0
  203. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/tasklib.rb +22 -0
  204. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/testtask.rb +201 -0
  205. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/thread_history_display.rb +48 -0
  206. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/thread_pool.rb +161 -0
  207. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/trace_output.rb +22 -0
  208. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/version.rb +9 -0
  209. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake/win32.rb +56 -0
  210. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/lib/rake.rb +73 -0
  211. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/file_creation.rb +34 -0
  212. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/helper.rb +128 -0
  213. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/support/rakefile_definitions.rb +444 -0
  214. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/support/ruby_runner.rb +33 -0
  215. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_private_reader.rb +42 -0
  216. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake.rb +40 -0
  217. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_application.rb +517 -0
  218. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_application_options.rb +457 -0
  219. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_backtrace.rb +113 -0
  220. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_clean.rb +46 -0
  221. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_definitions.rb +79 -0
  222. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_directory_task.rb +57 -0
  223. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_dsl.rb +40 -0
  224. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_early_time.rb +31 -0
  225. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_extension.rb +59 -0
  226. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_file_creation_task.rb +56 -0
  227. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_file_list.rb +627 -0
  228. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_file_list_path_map.rb +8 -0
  229. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_file_task.rb +122 -0
  230. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_file_utils.rb +309 -0
  231. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_ftp_file.rb +74 -0
  232. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_functional.rb +466 -0
  233. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_invocation_chain.rb +64 -0
  234. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_linked_list.rb +84 -0
  235. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_makefile_loader.rb +46 -0
  236. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_multi_task.rb +58 -0
  237. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_name_space.rb +43 -0
  238. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_package_task.rb +79 -0
  239. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_path_map.rb +168 -0
  240. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_path_map_explode.rb +34 -0
  241. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_path_map_partial.rb +18 -0
  242. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_pseudo_status.rb +21 -0
  243. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_rake_test_loader.rb +20 -0
  244. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_reduce_compat.rb +26 -0
  245. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_require.rb +40 -0
  246. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_rules.rb +362 -0
  247. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_scope.rb +44 -0
  248. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_task.rb +376 -0
  249. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_task_argument_parsing.rb +103 -0
  250. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_task_arguments.rb +121 -0
  251. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_task_lib.rb +9 -0
  252. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_task_manager.rb +158 -0
  253. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_task_manager_argument_resolution.rb +19 -0
  254. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_task_with_arguments.rb +171 -0
  255. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_test_task.rb +119 -0
  256. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_thread_pool.rb +142 -0
  257. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_top_level_functions.rb +71 -0
  258. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_rake_win32.rb +72 -0
  259. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_thread_history_display.rb +101 -0
  260. data/vendor/bundle/ruby/2.0.0/gems/rake-10.1.1/test/test_trace_output.rb +52 -0
  261. data/vendor/bundle/ruby/2.0.0/specifications/httparty-0.11.0.gemspec +34 -0
  262. data/vendor/bundle/ruby/2.0.0/specifications/multi_json-1.8.2.gemspec +30 -0
  263. data/vendor/bundle/ruby/2.0.0/specifications/multi_xml-0.5.5.gemspec +30 -0
  264. data/vendor/bundle/ruby/2.0.0/specifications/rake-10.1.1.gemspec +34 -0
  265. metadata +262 -2
@@ -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,530 @@
1
+ = Rake Changelog
2
+
3
+ NOTE: Refer to the individual release documents (in the
4
+ doc/release_notes directory) for changes after in version 0.9.4
5
+ and later.
6
+
7
+ == Master (for 0.9.3)
8
+
9
+ * The rake test loader now removes arguments it has processed. Issue #51
10
+ * Rake::TaskArguments now responds to #values_at
11
+ * RakeFileUtils.verbose_flag = nil silences output the same as 0.8.7
12
+ * Rake tests are now directory-independent
13
+ * Rake tests are no longer require flexmock
14
+ * Commands constant is no longer polluting top level namespace.
15
+ * Show only the interesting portion of the backtrace by default (James M. Lawrence).
16
+ * Added --reduce-compat optiont to remove backward compatible DSL hacks (James M. Lawrence).
17
+ * lib/rake/file_list.rb (Rake::FileList#egrep): there is no need to
18
+ open files in binary mode. (NAKAMURA Usaku)
19
+
20
+ == Version 0.9.2
21
+
22
+ * Unknown
23
+
24
+ == Version 0.9.1
25
+
26
+ * Added deprecation warnings to the Rake DSL methods.
27
+
28
+ == Version 0.9.0
29
+
30
+ * *Incompatible* *change*: Rake DSL commands ('task', 'file', etc.) are
31
+ no longer private methods in Object. If you need to call 'task :xzy' inside
32
+ your class, include Rake::DSL into the class. The DSL is still available at
33
+ the top level scope (via the top level object which extends Rake::DSL).
34
+
35
+ * Rake now warns when the deprecated :needs syntax used.
36
+
37
+ * Rake history is now UTF-8 encoded.
38
+
39
+ * Rake now uses case-insensitive comparisons to find the Rakefile on Windows.
40
+ Based on patch by Roger Pack.
41
+
42
+ * Rake now requires (instead of loads) files in the test task. Patch by Cezary
43
+ Baginski.
44
+
45
+ * Fixed typos. Patches by Sean Scot August Moon and R.T. Lechow.
46
+
47
+ * Rake now prints the Rakefile directory only when it's different from the
48
+ current directory. Patch by Alex Chaffee.
49
+
50
+ * Improved rakefile_location discovery on Windows. Patch by James Tucker.
51
+
52
+ * Rake now recognizes "Windows Server" as a windows system. Patch by Matthias
53
+ Lüdtke
54
+
55
+ * Rake::RDocTask is deprecated. Use RDoc::Task from RDoc 2.4.2+ (require
56
+ 'rdoc/task')
57
+
58
+ * Rake::GemPackageTask is deprecated. Use Gem::PackageTask (require
59
+ 'rubygems/package_task')
60
+
61
+ * Rake now outputs various messages to $stderr instead of $stdout.
62
+
63
+ * Rake no longer emits warnings for Config. Patch by Santiago Pastorino.
64
+
65
+ * Split rake.rb into individual files.
66
+
67
+ * Support for the --where (-W) flag for showing where a task is defined.
68
+
69
+ * Fixed quoting in test task.
70
+ (http://onestepback.org/redmine/issues/show/44,
71
+ http://www.pivotaltracker.com/story/show/1223138)
72
+
73
+ * Fixed the silent option parsing problem.
74
+ (http://onestepback.org/redmine/issues/show/47)
75
+
76
+ * Fixed :verbose=>false flag on sh and ruby commands.
77
+
78
+ * Rake command line options may be given by default in a RAKEOPT
79
+ environment variable.
80
+
81
+ * Errors in Rake will now display the task invocation chain in effect
82
+ at the time of the error.
83
+
84
+ * Accepted change by warnickr to not expand test patterns in shell
85
+ (allowing more files in the test suite).
86
+
87
+ * Fixed that file tasks did not perform prereq lookups in scope
88
+ (Redmine #57).
89
+
90
+ == Version 0.8.7
91
+
92
+ * Fixed EXEEXT for JRuby on windows.
93
+
94
+ == Version 0.8.6
95
+
96
+ * Minor fixes to the RDoc generation (removed dependency on darkfish
97
+ and removed inline source option).
98
+
99
+ == PreVersion 0.8.6
100
+
101
+ * Now allow # comments to comment a task definition.
102
+
103
+ == Version 0.8.5
104
+
105
+ * Better support for the system command on Windows.
106
+
107
+ == Version 0.8.4
108
+
109
+ * Preserve case when locating rakefiles (patch from James
110
+ M. Lawrence/quix)
111
+
112
+ * Better support for windows paths in the test task (patch from Simon
113
+ Chiang/bahuvrihi)
114
+
115
+ * Windows system dir search order is now: HOME, HOMEDRIVE + HOMEPATH,
116
+ APPDATA, USERPROFILE (patch from Luis Lavena)
117
+
118
+ * MingGW is now recognized as a windows platform. (patch from Luis
119
+ Lavena)
120
+
121
+ * Numerous fixes to the windows test suite (patch from Luis Lavena).
122
+
123
+ * Improved Rakefile case insensitivity testing (patch from Luis
124
+ Lavena).
125
+
126
+ * Fixed stray ARGV option problem that was interfering with
127
+ Test::Unit::Runner.
128
+
129
+ * Fixed default verbose mode (was accidently changed to false).
130
+
131
+ * Removed reference to manage_gem to fix the warning produced by the
132
+ gem package task.
133
+
134
+ == Version 0.8.3
135
+
136
+ * Enhanced the system directory detection in windows. We now check
137
+ HOMEDRIVE/HOMEPATH and USERPROFILE if APPDATA isn't found. (Patch
138
+ supplied by James Tucker). Rake no long aborts if it can't find the
139
+ directory.
140
+
141
+ * Added fix to handle ruby installations in directories with spaces in
142
+ their name.
143
+
144
+ == Version 0.8.2
145
+
146
+ * Fixed bug in package task so that it will include the subdir
147
+ directory in the package for testing. (Bug found by Adam Majer)
148
+
149
+ * Added ENV var to rakefile to prevent OS X from including extended
150
+ attribute junk in a tar file. (Bug found by Adam Majer)
151
+
152
+ * Fixed filename dependency order bug in test_inspect_pending and
153
+ test_to_s_pending. (Bug found by Adam Majer)
154
+
155
+ * Fixed check for file utils options to make them immune to the
156
+ symbol/string differences. (Patch supplied by Edwin Pratomo)
157
+
158
+ * Fixed bug with rules involving multiple source (Patch supplied by
159
+ Emanuel Indermühle)
160
+
161
+ * Switched from getoptlong to optparse (patches supplied by Edwin
162
+ Pratomo)
163
+
164
+ * The -T option will now attempt to dynamically sense the size of the
165
+ terminal. RAKE_COLUMNS will override any dynamic sensing.
166
+
167
+ * FileList#clone and FileList#dup have better sematics w.r.t. taint
168
+ and freeze.
169
+
170
+ * Added ability clear prerequisites, and/or actions from an existing
171
+ task.
172
+
173
+ * Added the ability to reenable a task to be invoked a second time.
174
+
175
+ * Changed RDoc test task to have no default template. This makes it
176
+ easier for the tempate to pick up the template from the environment.
177
+
178
+ * Changed from using Mutex to Monitor. Evidently Mutex causes thread
179
+ join errors when Ruby is compiled with -disable-pthreads. (Patch
180
+ supplied by Ittay Dror)
181
+
182
+ * Fixed bug in makefile parser that had problems with extra spaces in
183
+ file task names. (Patch supplied by Ittay Dror)
184
+
185
+ * Added a performance patch for reading large makefile dependency
186
+ files. (Patch supplied by Ittay Dror)
187
+
188
+ * Default values for task arguments can easily be specified with the
189
+ :with_defaults method. (Idea for default argument merging supplied
190
+ by (Adam Q. Salter)
191
+
192
+ * The -T output will only self-truncate if the output is a tty.
193
+ However, if RAKE_COLUMNS is explicitly set, it will be honored in
194
+ any case. (Patch provided by Gavin Stark).
195
+
196
+ * Numerous fixes for running under windows. A big thanks to Bheeshmar
197
+ Redheendran for spending a good part of the afternoon at the
198
+ Lonestar Ruby Conference to help me work out these issues.
199
+
200
+ == Version 0.8.1
201
+
202
+ * Removed requires on parsedate.rb (in Ftptools)
203
+ * Removed ftools from rake.rb. Made it options in sys.rb
204
+
205
+ == Version 0.8.0
206
+
207
+ * Added task parameters (e.g. "rake build[version7]")
208
+ * Made task parameters passable to prerequisites.
209
+ * Comments are limited to 80 columns or so (suggested by Jamis Buck).
210
+ * Added -D to display full comments (suggested by Jamis Buck).
211
+ * The rake program will set the status value used in any explicit
212
+ exit(n) calls. (patch provided by Stephen Touset)
213
+ * Fixed error in functional tests that were not including session (and
214
+ silently skipping the functionl tests.
215
+ * Removed --usage and make -h the same as -H.
216
+ * Make a prettier inspect for tasks.
217
+
218
+ == Version 0.7.3
219
+
220
+ * Added existing and existing! methods to FileList
221
+ * FileLists now claim to be Arrays (via is_a?) to get better support
222
+ from the FileUtil module.
223
+ * Added init and top_level for custom rake applications.
224
+
225
+ == Version 0.7.2
226
+
227
+ * Error messages are now send to stderr rather than stdout (from
228
+ Payton Quackenbush).
229
+ * Better error handling on invalid command line arguments (from Payton
230
+ Quackenbush).
231
+ * Added rcov task and updated unit testing for better code coverage.
232
+ * Fixed some bugs where the application object was going to the global
233
+ appliation instead of using its own data.
234
+ * Added square and curly bracket patterns to FileList#include (Tilman
235
+ Sauerbeck).
236
+ * Added plain filename support to rule dependents (suggested by Nobu
237
+ Nakada).
238
+ * Added pathmap support to rule dependents.
239
+ * Added a 'tasks' method to a namespace to get a list of tasks
240
+ associated with the namespace.
241
+ * Fixed the method name leak from FileUtils (bug found by Glenn
242
+ Vanderburg).
243
+ * Added rake_extension to handle detection of extension collisions.
244
+ * Added test for noop, bad_option and verbose flags to sh command.
245
+ * Removed dependency on internal fu_xxx functions from FileUtils.
246
+ * Added a 'shame' task to the Rakefile.
247
+ * Added tar_command and zip_command options to the Package task.
248
+ * Added a description to the gem task in GemPackageTask.
249
+ * Fixed a bug when rules have multiple prerequisites (patch by Joel
250
+ VanderWerf)
251
+ * Added a protected 'require "rubygems"' to test/test_application to
252
+ unbreak cruisecontrol.rb.
253
+ * Added the handful of RakeFileUtils to the private method as well.
254
+ * Added block based exclusion.
255
+ * The clean task will no longer delete 'core' if it is a directory.
256
+ * Removed rake_dup. Now we just simply rescue a bad dup.
257
+ * Refactored the FileList reject logic to remove duplication.
258
+ * Removed if __FILE__ at the end of the rake.rb file.
259
+
260
+ == Version 0.7.1
261
+
262
+ * Added optional filter parameter to the --tasks command line option.
263
+ * Added flatten to allow rule transform procs to return lists of
264
+ prereqs (Joel VanderWerf provided patch).
265
+ * Added pathmap to String and FileList.
266
+ * The -r option will now load .rake files (but a straight require
267
+ doesn't yet). NOTE: This is experimental ... it may be
268
+ discontinued.
269
+ * The -f option without a value will disable the search for a
270
+ Rakefile. The assumption is that the -r files are adequate.
271
+ * Fixed the safe_ln function to fall back to cp in more error
272
+ scenarios.
273
+
274
+ == Version 0.7.0
275
+
276
+ * Added Rake.original_dir to return the original starting directory of
277
+ the rake application.
278
+ * Added safe_ln support for openAFS (from Ludvig Omholt).
279
+ * Added --trace reminder on short exception messages (David Heinemeier
280
+ Hansson suggestion).
281
+ * Added multitask declaration that executes prerequisites in
282
+ parallel. (Doug Young providied an initial implementation).
283
+ * Fixed missing_const hack to be compatible with Rails. (Jamis Buck
284
+ supplied test case).
285
+ * Made the RDoc task default to internal (in-process) RDoc formatting.
286
+ The old behavior is still available by setting the +external+ flag
287
+ to true.
288
+ * Rakefiles are now loaded with the expanded path to prevent
289
+ accidental polution from the Ruby load path.
290
+ * The +namespace+ command now returns a NameSpace object that can be
291
+ used to lookup tasks defined in that namespace. This allows for
292
+ better anonymous namespace behavior.
293
+ * Task objects my now be used in prerequisite lists directly.
294
+
295
+ == Version 0.6.1
296
+
297
+ * Rebuilt 0.6.0 gem without signing.
298
+
299
+ == Version 0.6.0
300
+
301
+ * Fixed file creation bug in the unit tests (caused infinite loop on
302
+ windows).
303
+ * Fixed bug where session based functional tests were run under
304
+ windows.
305
+ * Fixed bug in directory tasks so that updating a directory will not
306
+ retrigger file tasks depending on the directory (see
307
+ FileCreationTask and EarlyTime).
308
+ * Added egrep to FileList
309
+ * ruby command now runs same ruby version as rake.
310
+ * Added investigation to task object. (suggested by Martin Fowler)
311
+ * Added ruby_opts to the test task to allow arbitrary ruby options to
312
+ be passed to the test script. (Greg Fast)
313
+ * Fixed the test loader to ignore options. (Greg Fast)
314
+ * Moved Task, FileTask, FileCreationTask and RakeApp into the Rake
315
+ module namespace. Old style namespace behavior can be invoked via
316
+ the --classic-namespace option. (requested by Kelly Felkins).
317
+ * GemTask is now sensitive to the gem platform (Masao Mutoh).
318
+ * A non-existing file prerequisite will no longer cause an exception
319
+ (Philipp Neubeck).
320
+ * Multiple prerequisites on Rake rules now allowed (initial patch
321
+ supplied by Stuart Jansen).
322
+
323
+ == Version 0.5.4
324
+
325
+ * Added double quotes to the test runner.
326
+ * Added .svn to default ignore list.
327
+ * Updated FileList#include to support nested arrays and filelists.
328
+
329
+ == Version 0.5.3
330
+
331
+ * Added support for importing Rakefile and other dependencies.
332
+ * Fixed bug so that now rules can chain off of existing tasks as well
333
+ as existing files.
334
+ * Fixed verbose flag bug in the testing task. Shortened some failure
335
+ messages.
336
+ * Make FileUtils methods private at the top level module to avoid
337
+ accidental method leaking into other objects.
338
+ * Added test loader option to test task. "testrb" is no longer the
339
+ default test loader. It is now eating syntax errors that should
340
+ halt the unit tests.
341
+ * Revamped FileList so that it works more like and array (addressed
342
+ flatten bug). Added many tests around file list.
343
+ * Added +ext+ method to both String and FileList.
344
+
345
+ == Version 0.5.0
346
+
347
+ * Fixed documentation that was lacking the Rake module name (Tilman
348
+ Sauerbeck).
349
+ * Added tar.gz and tar.bz2 support to package task (Tilman Sauerbeck).
350
+ * Recursive rules are now supported (Tilman Sauerbeck).
351
+ * Added warning option for the Test Task (requested by Eric Hodel).
352
+ * The jamis rdoc template is only used if it exists.
353
+ * Added fix for Ruby 1.8.2 test/unit and rails problem.
354
+ * Added contributed rake man file (Jani Monoses).
355
+ * Added Brian Candler's fix for problems in --trace and --dry-run
356
+ mode.
357
+
358
+ == Version 0.4.15
359
+
360
+ * Fixed a bug that prevented the TESTOPTS flag from working with the
361
+ revised for 1.8.2 test task.
362
+ * Updated the docs on --trace to indicate that it also enables a full
363
+ backtrace on errors.
364
+
365
+ == Version 0.4.14
366
+
367
+ * Modified the TestTask to workaround the Ruby 1.8.2 change in
368
+ autoexecuting unit tests.
369
+
370
+ == Version 0.4.13
371
+
372
+ * Fixed the dry-run flag so it is operating again.
373
+ * Multiple arguments to sh and ruby commands will not be interpreted
374
+ by the shell (patch provided by Jonathan Paisley).
375
+
376
+ == Version 0.4.12
377
+
378
+ * Added --silent (-s) to suppress the (in directory) rake message.
379
+
380
+ == Version 0.4.11
381
+
382
+ * Changed the "don't know how to rake" message (finally)
383
+ * Changes references to a literal "Rakefile" to reference the global
384
+ variable $rakefile (which contains the actual name of the rakefile).
385
+
386
+ == Version 0.4.10
387
+
388
+ * Added block support to the "sh" command, allowing users to take
389
+ special actions on the result of the system call. E.g.
390
+
391
+ sh "shell_command" do |ok, res|
392
+ puts "Program returned #{res.exitstatus}" if ! ok
393
+ end
394
+
395
+ == Version 0.4.9
396
+
397
+ * Switched to Jamis Buck's RDoc template.
398
+ * Removed autorequire from Rake's gem spec. This prevents the Rake
399
+ libraries from loading while using rails.
400
+
401
+ == Version 0.4.8
402
+
403
+ * Added support for .rb versions of Rakefile.
404
+ * Removed \\\n's from test task.
405
+ * Fixed Ruby 1.9 compatibility issue with FileList.
406
+
407
+ == Version 0.4.7
408
+
409
+ * Fixed problem in FileList that caused Ruby 1.9 to go into infinite
410
+ recursion. Since to_a was removed from Object, it does not need to
411
+ added back into the list of methods to rewrite in FileList. (Thanks
412
+ to Kent Sibilev for pointing this out).
413
+
414
+ == Version 0.4.6
415
+ * Removed test version of ln in FileUtils that prevented safe_ln from
416
+ using ln.
417
+
418
+ == Version 0.4.5
419
+ * Upgraded comments in TestTask.
420
+ * FileList to_s and inspect now automatically resolve pending changes.
421
+ * FileList#exclude properly returns the FileList.
422
+
423
+ == Version 0.4.4
424
+ * Fixed initialization problem with @comment.
425
+ * Now using multi -r technique in TestTask. Switch Rakefile back to
426
+ using the built-in test task macros because the rake runtime is no
427
+ longer needed.
428
+ * Added 'TEST=filename' and 'TESTOPTS=options' to the Test Task
429
+ macros.
430
+ * Allow a +test_files+ attribute in test tasks. This allows more
431
+ flexibility in specifying test files.
432
+
433
+ == Version 0.4.3
434
+ * Fixed Comment leakage.
435
+
436
+ == Version 0.4.2
437
+ * Added safe_ln that falls back to a copy if a file link is not supported.
438
+ * Package builder now uses safe_ln.
439
+
440
+ == Version 0.4.1
441
+ * Task comments are now additive, combined with "/".
442
+ * Works with (soon to be released) rubygems 0.6.2 (or 0.7.0)
443
+
444
+ == Version 0.4.0
445
+ * FileList now uses deferred loading. The file system is not searched
446
+ until the first call that needs the file names.
447
+ * VAR=VALUE options are now accepted on the command line and are
448
+ treated like environment variables. The values may be tested in a
449
+ Rakefile by referencing ENV['VAR'].
450
+ * File.mtime is now used (instead of File.new().mtime).
451
+
452
+ == Version 0.3.2.x
453
+
454
+ * Removed some hidden dependencies on rubygems. Tests now will test
455
+ gems only if they are installed.
456
+ * Removed Sys from some example files. I believe that is that last
457
+ reference to Sys outside of the contrib area.
458
+ * Updated all copyright notices to include 2004.
459
+
460
+ == Version 0.3.2
461
+
462
+ * GEM Installation now works with the application stub.
463
+
464
+ == Version 0.3.1
465
+
466
+ * FileLists now automatically ignore CVS, .bak, !
467
+ * GEM Installation now works.
468
+
469
+ == Version 0.3.0
470
+
471
+ Promoted 0.2.10.
472
+
473
+ == Version 0.2.10
474
+ General
475
+
476
+ * Added title to Rake's rdocs
477
+ * Contrib packages are no longer included in the documentation.
478
+
479
+ RDoc Issues
480
+
481
+ * Removed default for the '--main' option
482
+ * Fixed rendering of the rdoc options
483
+ * Fixed clean/clobber confusion with rerdoc
484
+ * 'title' attribute added
485
+
486
+ Package Task Library Issues
487
+
488
+ * Version (or explicit :noversion) is required.
489
+ * +package_file+ attribute is now writable
490
+
491
+ FileList Issues
492
+
493
+ * Dropped bang version of exclude. Now using ant-like include/exclude semantics.
494
+ * Enabled the "yield self" idiom in FileList#initialize.
495
+
496
+ == Version 0.2.9
497
+
498
+ This version contains numerous changes as the RubyConf.new(2003)
499
+ presentation was being prepared. The changes include:
500
+
501
+ * The monolithic rubyapp task library is in the process of being
502
+ dropped in favor of lighter weight task libraries.
503
+
504
+ == Version 0.2.7
505
+
506
+ * Added "desc" for task descriptions.
507
+ * -T will now display tasks with descriptions.
508
+ * -P will display tasks and prerequisites.
509
+ * Dropped the Sys module in favor of the 1.8.x FileUtils module. Sys
510
+ is still supported in the contrib area.
511
+
512
+ == Version 0.2.6
513
+
514
+ * Moved to RubyForge
515
+
516
+ == Version 0.2.5
517
+
518
+ * Switched to standard ruby app builder.
519
+ * Added no_match option to file matcher.
520
+
521
+ == Version 0.2.4
522
+
523
+ * Fixed indir, which neglected to actually change directories.
524
+
525
+ == Version 0.2.3
526
+
527
+ * Added rake module for a help target
528
+ * Added 'for_files' to Sys
529
+ * Added a $rakefile constant
530
+ * Added test for selecting proper rule with multiple targets.
@@ -0,0 +1,21 @@
1
+ Copyright (c) 2003, 2004 Jim Weirich
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
+