fairchild-poolparty 1.2.12 → 1.3.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1292) hide show
  1. data/README.rdoc +202 -0
  2. data/Rakefile +7 -21
  3. data/VERSION.yml +2 -2
  4. data/bin/cloud +20 -14
  5. data/bin/cloud-bootstrap +9 -19
  6. data/bin/cloud-compile +33 -0
  7. data/bin/cloud-configure +14 -20
  8. data/bin/cloud-console +8 -6
  9. data/bin/cloud-contract +18 -13
  10. data/bin/cloud-expand +19 -20
  11. data/bin/cloud-list +19 -21
  12. data/bin/cloud-osxcopy +2 -3
  13. data/bin/cloud-setup +36 -0
  14. data/bin/cloud-show +11 -20
  15. data/bin/cloud-ssh +7 -11
  16. data/bin/cloud-start +19 -13
  17. data/bin/cloud-terminate +12 -18
  18. data/bin/cloud-thrift +77 -0
  19. data/bin/cloud-verify +2 -3
  20. data/config/jeweler.rb +10 -18
  21. data/examples/basic.rb +17 -9
  22. data/examples/custom_bootstrap.sh +7 -0
  23. data/examples/eucalyptus.rb +63 -0
  24. data/examples/eucalyptus_test_run.sh +31 -0
  25. data/examples/knock.sh +27 -0
  26. data/examples/monitored_cloud.rb +22 -0
  27. data/examples/simple.rb +9 -5
  28. data/examples/ssh_garden.rb +21 -0
  29. data/examples/thrift/erlang/Emakefile +5 -0
  30. data/examples/thrift/erlang/Makefile +26 -0
  31. data/examples/thrift/erlang/deps/thrift/COPYING +24 -0
  32. data/examples/thrift/erlang/deps/thrift/LICENSE +24 -0
  33. data/examples/thrift/erlang/deps/thrift/Makefile +18 -0
  34. data/examples/thrift/erlang/deps/thrift/README +31 -0
  35. data/examples/thrift/erlang/deps/thrift/build/beamver +59 -0
  36. data/examples/thrift/erlang/deps/thrift/build/buildtargets.mk +14 -0
  37. data/examples/thrift/erlang/deps/thrift/build/colors.mk +24 -0
  38. data/examples/thrift/erlang/deps/thrift/build/docs.mk +12 -0
  39. data/examples/thrift/erlang/deps/thrift/build/mime.types +98 -0
  40. data/examples/thrift/erlang/deps/thrift/build/otp.mk +146 -0
  41. data/examples/thrift/erlang/deps/thrift/build/otp_subdir.mk +85 -0
  42. data/examples/thrift/erlang/deps/thrift/build/raw_test.mk +29 -0
  43. data/examples/thrift/erlang/deps/thrift/ebin/thrift.app +44 -0
  44. data/examples/thrift/erlang/deps/thrift/ebin/thrift.appup +1 -0
  45. data/examples/thrift/erlang/deps/thrift/include/thrift_constants.hrl +40 -0
  46. data/examples/thrift/erlang/deps/thrift/include/thrift_protocol.hrl +12 -0
  47. data/examples/thrift/erlang/deps/thrift/src/Makefile +116 -0
  48. data/examples/thrift/erlang/deps/thrift/src/test_handler.erl +7 -0
  49. data/examples/thrift/erlang/deps/thrift/src/test_service.erl +10 -0
  50. data/examples/thrift/erlang/deps/thrift/src/thrift.app.src +44 -0
  51. data/examples/thrift/erlang/deps/thrift/src/thrift.appup.src +1 -0
  52. data/examples/thrift/erlang/deps/thrift/src/thrift_app.erl +55 -0
  53. data/examples/thrift/erlang/deps/thrift/src/thrift_base64_transport.erl +45 -0
  54. data/examples/thrift/erlang/deps/thrift/src/thrift_binary_protocol.erl +318 -0
  55. data/examples/thrift/erlang/deps/thrift/src/thrift_buffered_transport.erl +168 -0
  56. data/examples/thrift/erlang/deps/thrift/src/thrift_client.erl +328 -0
  57. data/examples/thrift/erlang/deps/thrift/src/thrift_disk_log_transport.erl +106 -0
  58. data/examples/thrift/erlang/deps/thrift/src/thrift_file_transport.erl +69 -0
  59. data/examples/thrift/erlang/deps/thrift/src/thrift_framed_transport.erl +196 -0
  60. data/examples/thrift/erlang/deps/thrift/src/thrift_http_transport.erl +169 -0
  61. data/examples/thrift/erlang/deps/thrift/src/thrift_processor.erl +174 -0
  62. data/examples/thrift/erlang/deps/thrift/src/thrift_protocol.erl +326 -0
  63. data/examples/thrift/erlang/deps/thrift/src/thrift_server.erl +171 -0
  64. data/examples/thrift/erlang/deps/thrift/src/thrift_service.erl +6 -0
  65. data/examples/thrift/erlang/deps/thrift/src/thrift_socket_server.erl +245 -0
  66. data/examples/thrift/erlang/deps/thrift/src/thrift_socket_transport.erl +100 -0
  67. data/examples/thrift/erlang/deps/thrift/src/thrift_sup.erl +53 -0
  68. data/examples/thrift/erlang/deps/thrift/src/thrift_transport.erl +38 -0
  69. data/examples/thrift/erlang/deps/thrift/vsn.mk +1 -0
  70. data/examples/thrift/erlang/include/commandInterface_thrift.hrl +5 -0
  71. data/examples/thrift/erlang/include/poolparty_constants.hrl +9 -0
  72. data/examples/thrift/erlang/include/poolparty_types.hrl +8 -0
  73. data/examples/thrift/erlang/src/commandInterface_thrift.erl +29 -0
  74. data/examples/thrift/erlang/src/poolparty_types.erl +30 -0
  75. data/examples/thrift/erlang/src/thrift_example.erl +32 -0
  76. data/examples/thrift/thrift_example.py +28 -0
  77. data/examples/thrift/thrift_example.rb +36 -0
  78. data/examples/vmware.rb +18 -0
  79. data/lib/cloud_providers.rb +19 -0
  80. data/lib/cloud_providers/cloud_provider.rb +85 -0
  81. data/lib/cloud_providers/cloud_provider_instance.rb +283 -0
  82. data/lib/cloud_providers/connections.rb +99 -0
  83. data/lib/cloud_providers/ec2/ec2.rb +197 -0
  84. data/lib/cloud_providers/ec2/ec2_helpers.rb +45 -0
  85. data/lib/cloud_providers/ec2/ec2_instance.rb +120 -0
  86. data/lib/cloud_providers/ec2/ec2_response.rb +79 -0
  87. data/lib/cloud_providers/ssh/ssh.rb +68 -0
  88. data/lib/cloud_providers/ssh/ssh_instance.rb +41 -0
  89. data/lib/cloud_providers/vmware/vmware.rb +127 -0
  90. data/lib/cloud_providers/vmware/vmware_instance.rb +56 -0
  91. data/lib/core/array.rb +54 -0
  92. data/lib/core/hash.rb +80 -0
  93. data/lib/core/integer.rb +11 -0
  94. data/lib/core/module.rb +14 -0
  95. data/lib/core/object.rb +92 -0
  96. data/lib/core/proc.rb +55 -0
  97. data/lib/core/string.rb +150 -0
  98. data/lib/core/symbol.rb +29 -0
  99. data/lib/{poolparty/core → core}/time.rb +0 -0
  100. data/lib/dependency_resolver.rb +11 -0
  101. data/lib/dependency_resolvers/base.rb +122 -0
  102. data/lib/dependency_resolvers/chef.rb +239 -0
  103. data/lib/dependency_resolvers/chef/resources/chef_attributes_file.rb +51 -0
  104. data/lib/dependency_resolvers/chef/resources/chef_recipe.rb +51 -0
  105. data/lib/dependency_resolvers/chef/resources/http_request.rb +39 -0
  106. data/lib/dependency_resolvers/chef/resources/remote_directory.rb +54 -0
  107. data/lib/dependency_resolvers/chef/resources/remote_file.rb +69 -0
  108. data/lib/dependency_resolvers/chef/resources/route.rb +52 -0
  109. data/lib/dependency_resolvers/chef/resources/script.rb +62 -0
  110. data/lib/dependency_resolvers/proxy_object.rb +98 -0
  111. data/lib/keypair.rb +93 -0
  112. data/lib/mixins/askable.rb +163 -0
  113. data/lib/mixins/callbacks.rb +56 -0
  114. data/lib/mixins/delayed.rb +65 -0
  115. data/lib/mixins/pinger.rb +31 -0
  116. data/lib/mixins/printing.rb +35 -0
  117. data/lib/mixins/searchable_paths.rb +87 -0
  118. data/lib/poolparty.rb +53 -127
  119. data/lib/poolparty/base.rb +233 -0
  120. data/lib/poolparty/cloud.rb +301 -0
  121. data/lib/poolparty/default.rb +32 -0
  122. data/lib/poolparty/dsl_base.rb +36 -0
  123. data/lib/poolparty/installer.rb +111 -0
  124. data/lib/poolparty/installers/ec2.rb +72 -113
  125. data/lib/poolparty/installers/vmware.rb +161 -0
  126. data/lib/poolparty/monitor.rb +61 -0
  127. data/lib/poolparty/plugin.rb +12 -0
  128. data/lib/poolparty/plugins/apache.rb +207 -0
  129. data/lib/poolparty/plugins/apache2/apache2.conf.erb +630 -0
  130. data/lib/poolparty/plugins/apache2/base.conf.erb +171 -0
  131. data/lib/poolparty/plugins/apache2/browser_fixes.conf.erb +26 -0
  132. data/lib/poolparty/plugins/apache2/default-site.conf.erb +41 -0
  133. data/lib/poolparty/{templates → plugins}/apache2/mime-minimal.conf.erb +0 -0
  134. data/lib/poolparty/plugins/apache2/passenger_site.rb +14 -17
  135. data/lib/poolparty/plugins/apache2/php5.rb +11 -10
  136. data/lib/poolparty/plugins/apache2/virtual_host.rb +25 -19
  137. data/lib/poolparty/plugins/git.rb +8 -85
  138. data/lib/poolparty/plugins/git/git_repository.rb +83 -0
  139. data/lib/poolparty/plugins/rails.rb +25 -0
  140. data/lib/poolparty/plugins/rails/app.rb +29 -0
  141. data/lib/poolparty/pool.rb +180 -0
  142. data/lib/poolparty/pool_party_error.rb +19 -0
  143. data/lib/poolparty/pool_party_log.rb +47 -0
  144. data/lib/poolparty/resource.rb +293 -0
  145. data/lib/poolparty/resources/conditional.rb +65 -0
  146. data/lib/poolparty/resources/cron.rb +31 -22
  147. data/lib/poolparty/resources/directory.rb +32 -21
  148. data/lib/poolparty/resources/exec.rb +36 -30
  149. data/lib/poolparty/resources/file.rb +44 -44
  150. data/lib/poolparty/resources/gem_package.rb +55 -0
  151. data/lib/poolparty/resources/group.rb +37 -12
  152. data/lib/poolparty/resources/line.rb +67 -0
  153. data/lib/poolparty/resources/link.rb +49 -0
  154. data/lib/poolparty/resources/mount.rb +26 -10
  155. data/lib/poolparty/resources/package.rb +26 -12
  156. data/lib/poolparty/resources/service.rb +30 -14
  157. data/lib/poolparty/resources/user.rb +55 -30
  158. data/lib/poolparty/resources/variable.rb +31 -4
  159. data/lib/proto/command_interface_handler.rb +31 -0
  160. data/lib/proto/gen-erl/commandInterface_thrift.erl +29 -0
  161. data/lib/proto/gen-erl/commandInterface_thrift.hrl +5 -0
  162. data/lib/proto/gen-erl/poolparty_constants.hrl +9 -0
  163. data/lib/proto/gen-erl/poolparty_types.erl +30 -0
  164. data/lib/proto/gen-erl/poolparty_types.hrl +8 -0
  165. data/lib/{poolparty/core/proc.rb → proto/gen-py/__init__.py} +0 -0
  166. data/lib/proto/gen-py/cloudthrift/CommandInterface-remote +79 -0
  167. data/lib/proto/gen-py/cloudthrift/CommandInterface.py +251 -0
  168. data/lib/proto/gen-py/cloudthrift/CommandInterface.pyc +0 -0
  169. data/lib/proto/gen-py/cloudthrift/__init__.py +1 -0
  170. data/lib/proto/gen-py/cloudthrift/__init__.pyc +0 -0
  171. data/lib/proto/gen-py/cloudthrift/constants.py +9 -0
  172. data/lib/proto/gen-py/cloudthrift/constants.pyc +0 -0
  173. data/lib/proto/gen-py/cloudthrift/ttypes.py +160 -0
  174. data/lib/proto/gen-py/cloudthrift/ttypes.pyc +0 -0
  175. data/lib/proto/gen-py/thrift/TSCons.py +33 -0
  176. data/lib/proto/gen-py/thrift/Thrift.py +123 -0
  177. data/lib/proto/gen-py/thrift/Thrift.pyc +0 -0
  178. data/lib/proto/gen-py/thrift/__init__.py +20 -0
  179. data/lib/proto/gen-py/thrift/__init__.pyc +0 -0
  180. data/lib/proto/gen-py/thrift/protocol/TBinaryProtocol.py +259 -0
  181. data/lib/proto/gen-py/thrift/protocol/TBinaryProtocol.pyc +0 -0
  182. data/lib/proto/gen-py/thrift/protocol/TProtocol.py +205 -0
  183. data/lib/proto/gen-py/thrift/protocol/TProtocol.pyc +0 -0
  184. data/lib/proto/gen-py/thrift/protocol/__init__.py +20 -0
  185. data/lib/proto/gen-py/thrift/protocol/__init__.pyc +0 -0
  186. data/lib/proto/gen-py/thrift/protocol/fastbinary.c +1203 -0
  187. data/lib/proto/gen-py/thrift/server/THttpServer.py +63 -0
  188. data/lib/proto/gen-py/thrift/server/TNonblockingServer.py +309 -0
  189. data/lib/proto/gen-py/thrift/server/TServer.py +270 -0
  190. data/lib/proto/gen-py/thrift/server/__init__.py +20 -0
  191. data/lib/proto/gen-py/thrift/transport/THttpClient.py +100 -0
  192. data/lib/proto/gen-py/thrift/transport/TSocket.py +149 -0
  193. data/lib/proto/gen-py/thrift/transport/TSocket.pyc +0 -0
  194. data/lib/proto/gen-py/thrift/transport/TTransport.py +326 -0
  195. data/lib/proto/gen-py/thrift/transport/TTransport.pyc +0 -0
  196. data/lib/proto/gen-py/thrift/transport/TTwisted.py +181 -0
  197. data/lib/proto/gen-py/thrift/transport/__init__.py +20 -0
  198. data/lib/proto/gen-py/thrift/transport/__init__.pyc +0 -0
  199. data/lib/proto/gen-rb/command_interface.rb +84 -0
  200. data/lib/proto/gen-rb/poolparty_constants.rb +10 -0
  201. data/lib/proto/gen-rb/poolparty_types.rb +45 -0
  202. data/lib/proto/poolparty.thrift +17 -0
  203. data/lib/provision/bootstrap_scripts/build_centos.sh +72 -0
  204. data/lib/provision/bootstrap_scripts/build_ubuntu.sh +76 -0
  205. data/lib/provision/bootstrap_scripts/determine_os.sh +21 -0
  206. data/lib/provision/bootstrapper.rb +44 -0
  207. data/lib/provision/configure_scripts/configure_centos.erb +7 -0
  208. data/lib/provision/configure_scripts/configure_ubuntu.erb +7 -0
  209. data/tasks/development.rake +6 -6
  210. data/tasks/poolparty.rake +12 -0
  211. data/tasks/test.rake +40 -0
  212. data/test/fixtures/bad_perms_test_key +27 -0
  213. data/test/fixtures/chef/recipes/sudo/attributes/sudoers.rb +30 -0
  214. data/test/fixtures/chef/recipes/sudo/recipes/default.rb +33 -0
  215. data/test/fixtures/chef/recipes/sudo/templates/default/sudoers.erb +22 -0
  216. data/test/fixtures/clouds/fake_clouds.rb +9 -0
  217. data/test/fixtures/clouds/simple_cloud.rb +13 -0
  218. data/test/fixtures/clouds/ssh_cloud.rb +11 -0
  219. data/test/fixtures/clouds/vmware_cloud.rb +16 -0
  220. data/test/fixtures/ec2/ec2-describe-instances_response_body.xml +70 -0
  221. data/test/fixtures/ec2/ec2-run-instances_response_body.xml +35 -0
  222. data/test/fixtures/ec2/ec2-terminate-instances_response_body.xml +16 -0
  223. data/test/fixtures/keys/test_key +27 -0
  224. data/test/fixtures/keys/test_pub_key +8 -0
  225. data/test/fixtures/resources/fake_plugin.rb +19 -0
  226. data/test/fixtures/resources/fake_resource.rb +18 -0
  227. data/test/fixtures/resources/random_proc_file.rb +7 -0
  228. data/test/fixtures/templates/apache_conf.erb +2 -0
  229. data/test/lib/cloud_providers/cloud_provider_instance_test.rb +68 -0
  230. data/test/lib/cloud_providers/cloud_provider_test.rb +25 -0
  231. data/test/lib/cloud_providers/connections_test.rb +71 -0
  232. data/test/lib/cloud_providers/ec2/ec2_helpers_test.rb +29 -0
  233. data/test/lib/cloud_providers/ec2/ec2_instance_test.rb +59 -0
  234. data/test/lib/cloud_providers/ec2/ec2_response_test.rb +41 -0
  235. data/test/lib/cloud_providers/ec2/ec2_test.rb +116 -0
  236. data/test/lib/cloud_providers/ssh/ssh_test.rb +61 -0
  237. data/test/lib/cloud_providers/vmware/vmware_test.rb +46 -0
  238. data/test/lib/core/array_test.rb +53 -0
  239. data/test/lib/core/hash_test.rb +41 -0
  240. data/test/lib/core/integer_test.rb +19 -0
  241. data/test/lib/core/module_test.rb +38 -0
  242. data/test/lib/core/object_test.rb +57 -0
  243. data/test/lib/core/proc_test.rb +26 -0
  244. data/test/lib/core/string_test.rb +73 -0
  245. data/test/lib/core/symbol_test.rb +26 -0
  246. data/test/lib/core/time_test.rb +51 -0
  247. data/test/lib/dependency_resolvers/base_test.rb +42 -0
  248. data/test/lib/dependency_resolvers/chef/resources/chef_recipe_test.rb +21 -0
  249. data/test/lib/dependency_resolvers/chef/resources/http_request_test.rb +29 -0
  250. data/test/lib/dependency_resolvers/chef/resources/remote_directory_test.rb +45 -0
  251. data/test/lib/dependency_resolvers/chef/resources/remote_file_test.rb +36 -0
  252. data/test/lib/dependency_resolvers/chef/resources/route_test.rb +37 -0
  253. data/test/lib/dependency_resolvers/chef/resources/script_test.rb +49 -0
  254. data/test/lib/dependency_resolvers/chef_test.rb +136 -0
  255. data/test/lib/dependency_resolvers/proxy_object_test.rb +75 -0
  256. data/test/lib/mixins/callbacks_test.rb +48 -0
  257. data/test/lib/mixins/delayed_test.rb +50 -0
  258. data/test/lib/mixins/searchable_paths_test.rb +83 -0
  259. data/test/lib/poolparty/base_test.rb +47 -0
  260. data/test/lib/poolparty/cloud_test.rb +156 -0
  261. data/test/lib/poolparty/default_test.rb +17 -0
  262. data/test/lib/poolparty/dsl_base_test.rb +30 -0
  263. data/test/lib/poolparty/installers/vmware_installer_test.rb +16 -0
  264. data/test/lib/poolparty/keypair_test.rb +42 -0
  265. data/test/lib/poolparty/monitor_test.rb +30 -0
  266. data/test/lib/poolparty/plugins/apache2/php5_test.rb +26 -0
  267. data/test/lib/poolparty/plugins/apache2/virtual_host_test.rb +28 -0
  268. data/test/lib/poolparty/plugins/apache_test.rb +35 -0
  269. data/test/lib/poolparty/pool_party_error_test.rb +20 -0
  270. data/test/lib/poolparty/pool_party_log_test.rb +17 -0
  271. data/test/lib/poolparty/pool_test.rb +26 -0
  272. data/test/lib/poolparty/resource_test.rb +150 -0
  273. data/test/lib/poolparty/resources/conditional_test.rb +49 -0
  274. data/test/lib/poolparty/resources/cron_test.rb +31 -0
  275. data/test/lib/poolparty/resources/directory_test.rb +21 -0
  276. data/test/lib/poolparty/resources/exec_test.rb +62 -0
  277. data/test/lib/poolparty/resources/file_test.rb +38 -0
  278. data/test/lib/poolparty/resources/group_test.rb +21 -0
  279. data/test/lib/poolparty/resources/line_test.rb +20 -0
  280. data/test/lib/poolparty/resources/link_test.rb +27 -0
  281. data/test/lib/poolparty/resources/mount_test.rb +32 -0
  282. data/test/lib/poolparty/resources/package_test.rb +28 -0
  283. data/test/lib/poolparty/resources/service_test.rb +31 -0
  284. data/test/lib/poolparty/resources/user_test.rb +33 -0
  285. data/test/lib/poolparty/resources/variable_test.rb +43 -0
  286. data/test/lib/provision/base_test.rb +16 -0
  287. data/test/lib/provision/bootstrapper_test.rb +44 -0
  288. data/test/test_helper.rb +21 -10
  289. data/test/test_methods.rb +62 -1
  290. data/vendor/gems/{suitcase → colors}/LICENSE +0 -0
  291. data/vendor/gems/colors/README.rdoc +52 -0
  292. data/vendor/gems/colors/Rakefile +56 -0
  293. data/vendor/gems/colors/VERSION.yml +4 -0
  294. data/vendor/gems/colors/colors.gemspec +29 -0
  295. data/vendor/gems/colors/lib/colors.rb +45 -0
  296. data/vendor/gems/colors/test/colors_test.rb +26 -0
  297. data/vendor/gems/colors/test/test_helper.rb +10 -0
  298. data/vendor/gems/context/History.txt +10 -0
  299. data/vendor/gems/context/License.txt +20 -0
  300. data/vendor/gems/context/Manifest.txt +26 -0
  301. data/{spec/poolparty/poolparty/test_plugins/virtual_host_template.erb → vendor/gems/context/PostInstall.txt} +0 -0
  302. data/vendor/gems/context/README.rdoc +158 -0
  303. data/vendor/gems/context/Rakefile +4 -0
  304. data/vendor/gems/context/config/hoe.rb +73 -0
  305. data/vendor/gems/context/config/requirements.rb +15 -0
  306. data/vendor/gems/context/context.gemspec +44 -0
  307. data/vendor/gems/context/countloc.rb +65 -0
  308. data/vendor/gems/context/coverage/-Library-Ruby-Gems-1_8-gems-rcov-0_8_1_2_0-lib-rcov_rb.html +1598 -0
  309. data/vendor/gems/context/coverage/index.html +441 -0
  310. data/vendor/gems/context/coverage/lib-context-context_rb.html +669 -0
  311. data/vendor/gems/context/coverage/lib-context-core_ext-string_rb.html +627 -0
  312. data/vendor/gems/context/coverage/lib-context-lifecycle_rb.html +683 -0
  313. data/vendor/gems/context/coverage/lib-context-shared_behavior_rb.html +708 -0
  314. data/vendor/gems/context/coverage/lib-context-suite_rb.html +649 -0
  315. data/vendor/gems/context/coverage/lib-context-test_rb.html +637 -0
  316. data/vendor/gems/context/coverage/lib-context-version_rb.html +619 -0
  317. data/vendor/gems/context/coverage/lib-context_rb.html +623 -0
  318. data/vendor/gems/context/lib/context.rb +19 -0
  319. data/vendor/gems/context/lib/context/context.rb +64 -0
  320. data/vendor/gems/context/lib/context/core_ext/rails_hacks.rb +10 -0
  321. data/vendor/gems/context/lib/context/core_ext/string.rb +17 -0
  322. data/vendor/gems/context/lib/context/lifecycle.rb +103 -0
  323. data/vendor/gems/context/lib/context/shared_behavior.rb +98 -0
  324. data/vendor/gems/context/lib/context/suite.rb +39 -0
  325. data/vendor/gems/context/lib/context/test.rb +37 -0
  326. data/vendor/gems/context/lib/context/version.rb +9 -0
  327. data/vendor/gems/context/setup.rb +1585 -0
  328. data/vendor/gems/context/tasks/deployment.rake +34 -0
  329. data/{tasks → vendor/gems/context/tasks}/environment.rake +0 -0
  330. data/vendor/gems/context/test/test_context.rb +57 -0
  331. data/vendor/gems/context/test/test_core_ext.rb +21 -0
  332. data/vendor/gems/context/test/test_helper.rb +2 -0
  333. data/vendor/gems/context/test/test_lifecycle.rb +224 -0
  334. data/vendor/gems/context/test/test_nested_lifecycle.rb +44 -0
  335. data/vendor/gems/context/test/test_shared.rb +116 -0
  336. data/vendor/gems/context/test/test_test.rb +23 -0
  337. data/vendor/gems/daemons/LICENSE +29 -0
  338. data/vendor/gems/daemons/README +223 -0
  339. data/vendor/gems/daemons/Rakefile +84 -0
  340. data/vendor/gems/daemons/Releases +126 -0
  341. data/vendor/gems/daemons/TODO +6 -0
  342. data/vendor/gems/daemons/examples/call/call.rb +56 -0
  343. data/vendor/gems/daemons/examples/call/call_monitor.rb +55 -0
  344. data/vendor/gems/daemons/examples/daemonize/daemonize.rb +20 -0
  345. data/vendor/gems/daemons/examples/run/ctrl_crash.rb +17 -0
  346. data/vendor/gems/daemons/examples/run/ctrl_exec.rb +16 -0
  347. data/vendor/gems/daemons/examples/run/ctrl_exit.rb +15 -0
  348. data/vendor/gems/daemons/examples/run/ctrl_keep_pid_files.rb +17 -0
  349. data/vendor/gems/daemons/examples/run/ctrl_monitor.rb +16 -0
  350. data/vendor/gems/daemons/examples/run/ctrl_multiple.rb +16 -0
  351. data/vendor/gems/daemons/examples/run/ctrl_normal.rb +12 -0
  352. data/vendor/gems/daemons/examples/run/ctrl_ontop.rb +16 -0
  353. data/vendor/gems/daemons/examples/run/ctrl_optionparser.rb +43 -0
  354. data/vendor/gems/daemons/examples/run/ctrl_proc.rb +25 -0
  355. data/vendor/gems/daemons/examples/run/ctrl_proc.rb.output +101 -0
  356. data/vendor/gems/daemons/examples/run/ctrl_proc_multiple.rb +22 -0
  357. data/vendor/gems/daemons/examples/run/ctrl_proc_multiple.rb.output +2 -0
  358. data/vendor/gems/daemons/examples/run/ctrl_proc_simple.rb +17 -0
  359. data/vendor/gems/daemons/examples/run/myserver.rb +12 -0
  360. data/vendor/gems/daemons/examples/run/myserver_crashing.rb +14 -0
  361. data/vendor/gems/daemons/examples/run/myserver_crashing.rb.output +30 -0
  362. data/vendor/gems/daemons/examples/run/myserver_exiting.rb +8 -0
  363. data/vendor/gems/daemons/lib/daemons.rb +283 -0
  364. data/vendor/gems/daemons/lib/daemons/application.rb +372 -0
  365. data/vendor/gems/daemons/lib/daemons/application_group.rb +152 -0
  366. data/vendor/gems/daemons/lib/daemons/cmdline.rb +117 -0
  367. data/vendor/gems/daemons/lib/daemons/controller.rb +134 -0
  368. data/vendor/gems/daemons/lib/daemons/daemonize.rb +263 -0
  369. data/vendor/gems/daemons/lib/daemons/exceptions.rb +28 -0
  370. data/vendor/gems/daemons/lib/daemons/monitor.rb +127 -0
  371. data/vendor/gems/daemons/lib/daemons/pid.rb +101 -0
  372. data/vendor/gems/daemons/lib/daemons/pidfile.rb +111 -0
  373. data/vendor/gems/daemons/lib/daemons/pidmem.rb +10 -0
  374. data/vendor/gems/daemons/setup.rb +1360 -0
  375. data/vendor/gems/fakeweb/CHANGELOG +163 -0
  376. data/vendor/gems/fakeweb/LICENSE.txt +281 -0
  377. data/vendor/gems/fakeweb/README.rdoc +193 -0
  378. data/vendor/gems/fakeweb/Rakefile +76 -0
  379. data/vendor/gems/fakeweb/fakeweb.gemspec +21 -0
  380. data/vendor/gems/fakeweb/lib/fake_web.rb +172 -0
  381. data/vendor/gems/fakeweb/lib/fake_web/ext/net_http.rb +71 -0
  382. data/vendor/gems/fakeweb/lib/fake_web/registry.rb +103 -0
  383. data/vendor/gems/fakeweb/lib/fake_web/responder.rb +113 -0
  384. data/vendor/gems/fakeweb/lib/fake_web/response.rb +10 -0
  385. data/vendor/gems/fakeweb/lib/fake_web/stub_socket.rb +15 -0
  386. data/vendor/gems/fakeweb/lib/fake_web/utility.rb +22 -0
  387. data/vendor/gems/fakeweb/lib/fakeweb.rb +2 -0
  388. data/vendor/gems/fakeweb/test/fixtures/google_response_from_curl +12 -0
  389. data/vendor/gems/fakeweb/test/fixtures/google_response_with_transfer_encoding +17 -0
  390. data/vendor/gems/fakeweb/test/fixtures/google_response_without_transfer_encoding +11 -0
  391. data/vendor/gems/fakeweb/test/fixtures/test_example.txt +1 -0
  392. data/vendor/gems/fakeweb/test/fixtures/test_txt_file +3 -0
  393. data/vendor/gems/fakeweb/test/test_allow_net_connect.rb +85 -0
  394. data/vendor/gems/fakeweb/test/test_deprecations.rb +54 -0
  395. data/vendor/gems/fakeweb/test/test_fake_authentication.rb +92 -0
  396. data/vendor/gems/fakeweb/test/test_fake_web.rb +518 -0
  397. data/vendor/gems/fakeweb/test/test_fake_web_open_uri.rb +58 -0
  398. data/vendor/gems/fakeweb/test/test_helper.rb +74 -0
  399. data/vendor/gems/fakeweb/test/test_missing_open_uri.rb +25 -0
  400. data/vendor/gems/fakeweb/test/test_precedence.rb +51 -0
  401. data/vendor/gems/fakeweb/test/test_query_string.rb +45 -0
  402. data/vendor/gems/fakeweb/test/test_regexes.rb +103 -0
  403. data/vendor/gems/fakeweb/test/test_response_headers.rb +73 -0
  404. data/vendor/gems/fakeweb/test/test_trailing_slashes.rb +53 -0
  405. data/vendor/gems/fakeweb/test/test_utility.rb +70 -0
  406. data/vendor/gems/gratr/Grater.xcf +0 -0
  407. data/vendor/gems/gratr/README +335 -0
  408. data/vendor/gems/gratr/Rakefile +220 -0
  409. data/vendor/gems/gratr/examples/graph_self.rb +54 -0
  410. data/vendor/gems/gratr/examples/module_graph.jpg +0 -0
  411. data/vendor/gems/gratr/examples/module_graph.rb +12 -0
  412. data/vendor/gems/gratr/examples/self_graph.dot +117 -0
  413. data/vendor/gems/gratr/examples/self_graph.jpg +0 -0
  414. data/vendor/gems/gratr/examples/visualize.dot +58 -0
  415. data/vendor/gems/gratr/examples/visualize.jpg +0 -0
  416. data/vendor/gems/gratr/examples/visualize.rb +11 -0
  417. data/vendor/gems/gratr/install.rb +49 -0
  418. data/vendor/gems/gratr/lib/gratr.rb +42 -0
  419. data/vendor/gems/gratr/lib/gratr/adjacency_graph.rb +230 -0
  420. data/vendor/gems/gratr/lib/gratr/base.rb +34 -0
  421. data/vendor/gems/gratr/lib/gratr/biconnected.rb +116 -0
  422. data/vendor/gems/gratr/lib/gratr/chinese_postman.rb +123 -0
  423. data/vendor/gems/gratr/lib/gratr/common.rb +73 -0
  424. data/vendor/gems/gratr/lib/gratr/comparability.rb +92 -0
  425. data/vendor/gems/gratr/lib/gratr/digraph.rb +115 -0
  426. data/vendor/gems/gratr/lib/gratr/digraph_distance.rb +185 -0
  427. data/vendor/gems/gratr/lib/gratr/dot.rb +95 -0
  428. data/vendor/gems/gratr/lib/gratr/edge.rb +145 -0
  429. data/vendor/gems/gratr/lib/gratr/graph.rb +315 -0
  430. data/vendor/gems/gratr/lib/gratr/graph_api.rb +82 -0
  431. data/vendor/gems/gratr/lib/gratr/import.rb +44 -0
  432. data/vendor/gems/gratr/lib/gratr/labels.rb +103 -0
  433. data/vendor/gems/gratr/lib/gratr/maximum_flow.rb +107 -0
  434. data/vendor/gems/gratr/lib/gratr/rdot.rb +332 -0
  435. data/vendor/gems/gratr/lib/gratr/search.rb +422 -0
  436. data/vendor/gems/gratr/lib/gratr/strong_components.rb +127 -0
  437. data/vendor/gems/gratr/lib/gratr/undirected_graph.rb +153 -0
  438. data/vendor/gems/gratr/lib/priority-queue/benchmark/dijkstra.rb +171 -0
  439. data/vendor/gems/gratr/lib/priority-queue/compare_comments.rb +49 -0
  440. data/vendor/gems/gratr/lib/priority-queue/ext/priority_queue/CPriorityQueue/extconf.rb +2 -0
  441. data/vendor/gems/gratr/lib/priority-queue/lib/priority_queue.rb +14 -0
  442. data/vendor/gems/gratr/lib/priority-queue/lib/priority_queue/c_priority_queue.rb +1 -0
  443. data/vendor/gems/gratr/lib/priority-queue/lib/priority_queue/poor_priority_queue.rb +46 -0
  444. data/vendor/gems/gratr/lib/priority-queue/lib/priority_queue/ruby_priority_queue.rb +525 -0
  445. data/vendor/gems/gratr/lib/priority-queue/setup.rb +1551 -0
  446. data/vendor/gems/gratr/lib/priority-queue/test/priority_queue_test.rb +371 -0
  447. data/vendor/gems/gratr/tests/TestBiconnected.rb +53 -0
  448. data/vendor/gems/gratr/tests/TestChinesePostman.rb +53 -0
  449. data/vendor/gems/gratr/tests/TestComplement.rb +54 -0
  450. data/vendor/gems/gratr/tests/TestDigraph.rb +333 -0
  451. data/vendor/gems/gratr/tests/TestDigraphDistance.rb +138 -0
  452. data/vendor/gems/gratr/tests/TestDot.rb +75 -0
  453. data/vendor/gems/gratr/tests/TestEdge.rb +171 -0
  454. data/vendor/gems/gratr/tests/TestInspection.rb +57 -0
  455. data/vendor/gems/gratr/tests/TestMultiEdge.rb +57 -0
  456. data/vendor/gems/gratr/tests/TestNeighborhood.rb +64 -0
  457. data/vendor/gems/gratr/tests/TestProperties.rb +160 -0
  458. data/vendor/gems/gratr/tests/TestSearch.rb +277 -0
  459. data/vendor/gems/gratr/tests/TestStrongComponents.rb +85 -0
  460. data/vendor/gems/gratr/tests/TestTriagulated.rb +137 -0
  461. data/vendor/gems/gratr/tests/TestUndirectedGraph.rb +219 -0
  462. data/vendor/gems/json/CHANGES +93 -0
  463. data/vendor/gems/json/GPL +340 -0
  464. data/vendor/gems/json/README +78 -0
  465. data/vendor/gems/json/RUBY +58 -0
  466. data/vendor/gems/json/Rakefile +309 -0
  467. data/vendor/gems/json/TODO +1 -0
  468. data/vendor/gems/json/VERSION +1 -0
  469. data/vendor/gems/json/benchmarks/benchmark.txt +133 -0
  470. data/vendor/gems/json/benchmarks/benchmark_generator.rb +48 -0
  471. data/vendor/gems/json/benchmarks/benchmark_parser.rb +26 -0
  472. data/vendor/gems/json/benchmarks/benchmark_rails.rb +26 -0
  473. data/vendor/gems/json/bin/edit_json.rb +10 -0
  474. data/vendor/gems/json/bin/prettify_json.rb +76 -0
  475. data/vendor/gems/json/data/example.json +1 -0
  476. data/vendor/gems/json/data/index.html +38 -0
  477. data/vendor/gems/json/data/prototype.js +4184 -0
  478. data/vendor/gems/json/ext/json/ext/generator/extconf.rb +9 -0
  479. data/vendor/gems/json/ext/json/ext/generator/generator.c +885 -0
  480. data/vendor/gems/json/ext/json/ext/generator/unicode.c +182 -0
  481. data/vendor/gems/json/ext/json/ext/generator/unicode.h +53 -0
  482. data/vendor/gems/json/ext/json/ext/parser/Makefile +181 -0
  483. data/vendor/gems/json/ext/json/ext/parser/extconf.rb +9 -0
  484. data/vendor/gems/json/ext/json/ext/parser/gem_make.out +14 -0
  485. data/vendor/gems/json/ext/json/ext/parser/parser.c +1769 -0
  486. data/vendor/gems/json/ext/json/ext/parser/parser.rl +637 -0
  487. data/vendor/gems/json/ext/json/ext/parser/unicode.c +154 -0
  488. data/vendor/gems/json/ext/json/ext/parser/unicode.h +58 -0
  489. data/vendor/gems/json/ext/json/ext/parser/unicode.o +0 -0
  490. data/vendor/gems/json/install.rb +26 -0
  491. data/vendor/gems/json/lib/json.rb +235 -0
  492. data/vendor/gems/json/lib/json/Array.xpm +21 -0
  493. data/vendor/gems/json/lib/json/FalseClass.xpm +21 -0
  494. data/vendor/gems/json/lib/json/Hash.xpm +21 -0
  495. data/vendor/gems/json/lib/json/Key.xpm +73 -0
  496. data/vendor/gems/json/lib/json/NilClass.xpm +21 -0
  497. data/vendor/gems/json/lib/json/Numeric.xpm +28 -0
  498. data/vendor/gems/json/lib/json/String.xpm +96 -0
  499. data/vendor/gems/json/lib/json/TrueClass.xpm +21 -0
  500. data/vendor/gems/json/lib/json/add/core.rb +135 -0
  501. data/vendor/gems/json/lib/json/add/rails.rb +58 -0
  502. data/vendor/gems/json/lib/json/common.rb +354 -0
  503. data/vendor/gems/json/lib/json/editor.rb +1362 -0
  504. data/vendor/gems/json/lib/json/ext.rb +13 -0
  505. data/vendor/gems/json/lib/json/json.xpm +1499 -0
  506. data/vendor/gems/json/lib/json/pure.rb +75 -0
  507. data/vendor/gems/json/lib/json/pure/generator.rb +394 -0
  508. data/vendor/gems/json/lib/json/pure/parser.rb +259 -0
  509. data/vendor/gems/json/lib/json/version.rb +9 -0
  510. data/vendor/gems/json/tests/fixtures/fail1.json +1 -0
  511. data/vendor/gems/json/tests/fixtures/fail10.json +1 -0
  512. data/vendor/gems/json/tests/fixtures/fail11.json +1 -0
  513. data/vendor/gems/json/tests/fixtures/fail12.json +1 -0
  514. data/vendor/gems/json/tests/fixtures/fail13.json +1 -0
  515. data/vendor/gems/json/tests/fixtures/fail14.json +1 -0
  516. data/vendor/gems/json/tests/fixtures/fail18.json +1 -0
  517. data/vendor/gems/json/tests/fixtures/fail19.json +1 -0
  518. data/vendor/gems/json/tests/fixtures/fail2.json +1 -0
  519. data/vendor/gems/json/tests/fixtures/fail20.json +1 -0
  520. data/vendor/gems/json/tests/fixtures/fail21.json +1 -0
  521. data/vendor/gems/json/tests/fixtures/fail22.json +1 -0
  522. data/vendor/gems/json/tests/fixtures/fail23.json +1 -0
  523. data/vendor/gems/json/tests/fixtures/fail24.json +1 -0
  524. data/vendor/gems/json/tests/fixtures/fail25.json +1 -0
  525. data/vendor/gems/json/tests/fixtures/fail27.json +2 -0
  526. data/vendor/gems/json/tests/fixtures/fail28.json +2 -0
  527. data/vendor/gems/json/tests/fixtures/fail3.json +1 -0
  528. data/vendor/gems/json/tests/fixtures/fail4.json +1 -0
  529. data/vendor/gems/json/tests/fixtures/fail5.json +1 -0
  530. data/vendor/gems/json/tests/fixtures/fail6.json +1 -0
  531. data/vendor/gems/json/tests/fixtures/fail7.json +1 -0
  532. data/vendor/gems/json/tests/fixtures/fail8.json +1 -0
  533. data/vendor/gems/json/tests/fixtures/fail9.json +1 -0
  534. data/vendor/gems/json/tests/fixtures/pass1.json +56 -0
  535. data/vendor/gems/json/tests/fixtures/pass15.json +1 -0
  536. data/vendor/gems/json/tests/fixtures/pass16.json +1 -0
  537. data/vendor/gems/json/tests/fixtures/pass17.json +1 -0
  538. data/vendor/gems/json/tests/fixtures/pass2.json +1 -0
  539. data/vendor/gems/json/tests/fixtures/pass26.json +1 -0
  540. data/vendor/gems/json/tests/fixtures/pass3.json +6 -0
  541. data/vendor/gems/json/tests/runner.rb +25 -0
  542. data/vendor/gems/json/tests/test_json.rb +293 -0
  543. data/vendor/gems/json/tests/test_json_addition.rb +161 -0
  544. data/vendor/gems/json/tests/test_json_fixtures.rb +30 -0
  545. data/vendor/gems/json/tests/test_json_generate.rb +100 -0
  546. data/vendor/gems/json/tests/test_json_rails.rb +118 -0
  547. data/vendor/gems/json/tests/test_json_unicode.rb +61 -0
  548. data/vendor/gems/json/tools/fuzz.rb +140 -0
  549. data/vendor/gems/json/tools/server.rb +62 -0
  550. data/vendor/gems/net-ssh/CHANGELOG.rdoc +127 -0
  551. data/vendor/gems/net-ssh/Manifest +104 -0
  552. data/vendor/gems/net-ssh/README.rdoc +110 -0
  553. data/vendor/gems/net-ssh/Rakefile +26 -0
  554. data/vendor/gems/net-ssh/THANKS.rdoc +16 -0
  555. data/vendor/gems/net-ssh/lib/net/ssh.rb +215 -0
  556. data/vendor/gems/net-ssh/lib/net/ssh/authentication/agent.rb +176 -0
  557. data/vendor/gems/net-ssh/lib/net/ssh/authentication/constants.rb +18 -0
  558. data/vendor/gems/net-ssh/lib/net/ssh/authentication/key_manager.rb +193 -0
  559. data/vendor/gems/net-ssh/lib/net/ssh/authentication/methods/abstract.rb +60 -0
  560. data/vendor/gems/net-ssh/lib/net/ssh/authentication/methods/hostbased.rb +71 -0
  561. data/vendor/gems/net-ssh/lib/net/ssh/authentication/methods/keyboard_interactive.rb +66 -0
  562. data/vendor/gems/net-ssh/lib/net/ssh/authentication/methods/password.rb +39 -0
  563. data/vendor/gems/net-ssh/lib/net/ssh/authentication/methods/publickey.rb +92 -0
  564. data/vendor/gems/net-ssh/lib/net/ssh/authentication/pageant.rb +183 -0
  565. data/vendor/gems/net-ssh/lib/net/ssh/authentication/session.rb +134 -0
  566. data/vendor/gems/net-ssh/lib/net/ssh/buffer.rb +340 -0
  567. data/vendor/gems/net-ssh/lib/net/ssh/buffered_io.rb +149 -0
  568. data/vendor/gems/net-ssh/lib/net/ssh/config.rb +181 -0
  569. data/vendor/gems/net-ssh/lib/net/ssh/connection/channel.rb +625 -0
  570. data/vendor/gems/net-ssh/lib/net/ssh/connection/constants.rb +33 -0
  571. data/vendor/gems/net-ssh/lib/net/ssh/connection/session.rb +596 -0
  572. data/vendor/gems/net-ssh/lib/net/ssh/connection/term.rb +178 -0
  573. data/vendor/gems/net-ssh/lib/net/ssh/errors.rb +85 -0
  574. data/vendor/gems/net-ssh/lib/net/ssh/key_factory.rb +102 -0
  575. data/vendor/gems/net-ssh/lib/net/ssh/known_hosts.rb +129 -0
  576. data/vendor/gems/net-ssh/lib/net/ssh/loggable.rb +61 -0
  577. data/vendor/gems/net-ssh/lib/net/ssh/packet.rb +102 -0
  578. data/vendor/gems/net-ssh/lib/net/ssh/prompt.rb +93 -0
  579. data/vendor/gems/net-ssh/lib/net/ssh/proxy/errors.rb +14 -0
  580. data/vendor/gems/net-ssh/lib/net/ssh/proxy/http.rb +94 -0
  581. data/vendor/gems/net-ssh/lib/net/ssh/proxy/socks4.rb +70 -0
  582. data/vendor/gems/net-ssh/lib/net/ssh/proxy/socks5.rb +129 -0
  583. data/vendor/gems/net-ssh/lib/net/ssh/ruby_compat.rb +7 -0
  584. data/vendor/gems/net-ssh/lib/net/ssh/service/forward.rb +267 -0
  585. data/vendor/gems/net-ssh/lib/net/ssh/test.rb +89 -0
  586. data/vendor/gems/net-ssh/lib/net/ssh/test/channel.rb +129 -0
  587. data/vendor/gems/net-ssh/lib/net/ssh/test/extensions.rb +152 -0
  588. data/vendor/gems/net-ssh/lib/net/ssh/test/kex.rb +44 -0
  589. data/vendor/gems/net-ssh/lib/net/ssh/test/local_packet.rb +51 -0
  590. data/vendor/gems/net-ssh/lib/net/ssh/test/packet.rb +81 -0
  591. data/vendor/gems/net-ssh/lib/net/ssh/test/remote_packet.rb +38 -0
  592. data/vendor/gems/net-ssh/lib/net/ssh/test/script.rb +157 -0
  593. data/vendor/gems/net-ssh/lib/net/ssh/test/socket.rb +59 -0
  594. data/vendor/gems/net-ssh/lib/net/ssh/transport/algorithms.rb +384 -0
  595. data/vendor/gems/net-ssh/lib/net/ssh/transport/cipher_factory.rb +80 -0
  596. data/vendor/gems/net-ssh/lib/net/ssh/transport/constants.rb +30 -0
  597. data/vendor/gems/net-ssh/lib/net/ssh/transport/hmac.rb +31 -0
  598. data/vendor/gems/net-ssh/lib/net/ssh/transport/hmac/abstract.rb +78 -0
  599. data/vendor/gems/net-ssh/lib/net/ssh/transport/hmac/md5.rb +12 -0
  600. data/vendor/gems/net-ssh/lib/net/ssh/transport/hmac/md5_96.rb +11 -0
  601. data/vendor/gems/net-ssh/lib/net/ssh/transport/hmac/none.rb +15 -0
  602. data/vendor/gems/net-ssh/lib/net/ssh/transport/hmac/sha1.rb +13 -0
  603. data/vendor/gems/net-ssh/lib/net/ssh/transport/hmac/sha1_96.rb +11 -0
  604. data/vendor/gems/net-ssh/lib/net/ssh/transport/identity_cipher.rb +55 -0
  605. data/vendor/gems/net-ssh/lib/net/ssh/transport/kex.rb +13 -0
  606. data/vendor/gems/net-ssh/lib/net/ssh/transport/kex/diffie_hellman_group1_sha1.rb +208 -0
  607. data/vendor/gems/net-ssh/lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha1.rb +77 -0
  608. data/vendor/gems/net-ssh/lib/net/ssh/transport/openssl.rb +128 -0
  609. data/vendor/gems/net-ssh/lib/net/ssh/transport/packet_stream.rb +230 -0
  610. data/vendor/gems/net-ssh/lib/net/ssh/transport/server_version.rb +60 -0
  611. data/vendor/gems/net-ssh/lib/net/ssh/transport/session.rb +276 -0
  612. data/vendor/gems/net-ssh/lib/net/ssh/transport/state.rb +201 -0
  613. data/vendor/gems/net-ssh/lib/net/ssh/verifiers/lenient.rb +30 -0
  614. data/vendor/gems/net-ssh/lib/net/ssh/verifiers/null.rb +12 -0
  615. data/vendor/gems/net-ssh/lib/net/ssh/verifiers/strict.rb +53 -0
  616. data/vendor/gems/net-ssh/lib/net/ssh/version.rb +62 -0
  617. data/vendor/gems/net-ssh/net-ssh.gemspec +33 -0
  618. data/vendor/gems/net-ssh/setup.rb +1585 -0
  619. data/vendor/gems/net-ssh/test/authentication/methods/common.rb +28 -0
  620. data/vendor/gems/net-ssh/test/authentication/methods/test_abstract.rb +51 -0
  621. data/vendor/gems/net-ssh/test/authentication/methods/test_hostbased.rb +114 -0
  622. data/vendor/gems/net-ssh/test/authentication/methods/test_keyboard_interactive.rb +98 -0
  623. data/vendor/gems/net-ssh/test/authentication/methods/test_password.rb +50 -0
  624. data/vendor/gems/net-ssh/test/authentication/methods/test_publickey.rb +127 -0
  625. data/vendor/gems/net-ssh/test/authentication/test_agent.rb +205 -0
  626. data/vendor/gems/net-ssh/test/authentication/test_key_manager.rb +105 -0
  627. data/vendor/gems/net-ssh/test/authentication/test_session.rb +93 -0
  628. data/vendor/gems/net-ssh/test/common.rb +106 -0
  629. data/vendor/gems/net-ssh/test/configs/eqsign +3 -0
  630. data/vendor/gems/net-ssh/test/configs/exact_match +8 -0
  631. data/vendor/gems/net-ssh/test/configs/wild_cards +14 -0
  632. data/vendor/gems/net-ssh/test/connection/test_channel.rb +452 -0
  633. data/vendor/gems/net-ssh/test/connection/test_session.rb +488 -0
  634. data/vendor/gems/net-ssh/test/test_all.rb +6 -0
  635. data/vendor/gems/net-ssh/test/test_buffer.rb +336 -0
  636. data/vendor/gems/net-ssh/test/test_buffered_io.rb +63 -0
  637. data/vendor/gems/net-ssh/test/test_config.rb +84 -0
  638. data/vendor/gems/net-ssh/test/test_key_factory.rb +67 -0
  639. data/vendor/gems/net-ssh/test/transport/hmac/test_md5.rb +39 -0
  640. data/vendor/gems/net-ssh/test/transport/hmac/test_md5_96.rb +25 -0
  641. data/vendor/gems/net-ssh/test/transport/hmac/test_none.rb +34 -0
  642. data/vendor/gems/net-ssh/test/transport/hmac/test_sha1.rb +34 -0
  643. data/vendor/gems/net-ssh/test/transport/hmac/test_sha1_96.rb +25 -0
  644. data/vendor/gems/net-ssh/test/transport/kex/test_diffie_hellman_group1_sha1.rb +146 -0
  645. data/vendor/gems/net-ssh/test/transport/kex/test_diffie_hellman_group_exchange_sha1.rb +92 -0
  646. data/vendor/gems/net-ssh/test/transport/test_algorithms.rb +302 -0
  647. data/vendor/gems/net-ssh/test/transport/test_cipher_factory.rb +171 -0
  648. data/vendor/gems/net-ssh/test/transport/test_hmac.rb +34 -0
  649. data/vendor/gems/net-ssh/test/transport/test_identity_cipher.rb +40 -0
  650. data/vendor/gems/net-ssh/test/transport/test_packet_stream.rb +435 -0
  651. data/vendor/gems/net-ssh/test/transport/test_server_version.rb +57 -0
  652. data/vendor/gems/net-ssh/test/transport/test_session.rb +315 -0
  653. data/vendor/gems/net-ssh/test/transport/test_state.rb +173 -0
  654. data/vendor/gems/parenting/Rakefile +17 -1
  655. data/vendor/gems/parenting/lib/parenting/parenting.rb +13 -6
  656. data/vendor/gems/right_aws/History.txt +246 -0
  657. data/vendor/gems/right_aws/Manifest.txt +34 -0
  658. data/vendor/gems/right_aws/README.txt +166 -0
  659. data/vendor/gems/right_aws/Rakefile +112 -0
  660. data/vendor/gems/right_aws/lib/acf/right_acf_interface.rb +379 -0
  661. data/vendor/gems/right_aws/lib/awsbase/benchmark_fix.rb +39 -0
  662. data/vendor/gems/right_aws/lib/awsbase/right_awsbase.rb +797 -0
  663. data/vendor/gems/right_aws/lib/awsbase/support.rb +111 -0
  664. data/vendor/gems/right_aws/lib/ec2/right_ec2.rb +1737 -0
  665. data/vendor/gems/right_aws/lib/right_aws.rb +69 -0
  666. data/vendor/gems/right_aws/lib/s3/right_s3.rb +1094 -0
  667. data/vendor/gems/right_aws/lib/s3/right_s3_interface.rb +1175 -0
  668. data/vendor/gems/right_aws/lib/sdb/active_sdb.rb +930 -0
  669. data/vendor/gems/right_aws/lib/sdb/right_sdb_interface.rb +698 -0
  670. data/vendor/gems/right_aws/lib/sqs/right_sqs.rb +388 -0
  671. data/vendor/gems/right_aws/lib/sqs/right_sqs_gen2.rb +286 -0
  672. data/vendor/gems/right_aws/lib/sqs/right_sqs_gen2_interface.rb +444 -0
  673. data/vendor/gems/right_aws/lib/sqs/right_sqs_interface.rb +596 -0
  674. data/vendor/gems/right_aws/test/acf/test_helper.rb +2 -0
  675. data/vendor/gems/right_aws/test/acf/test_right_acf.rb +146 -0
  676. data/vendor/gems/right_aws/test/ec2/test_helper.rb +2 -0
  677. data/vendor/gems/right_aws/test/ec2/test_right_ec2.rb +108 -0
  678. data/vendor/gems/right_aws/test/http_connection.rb +87 -0
  679. data/vendor/gems/right_aws/test/s3/test_helper.rb +2 -0
  680. data/vendor/gems/right_aws/test/s3/test_right_s3.rb +419 -0
  681. data/vendor/gems/right_aws/test/s3/test_right_s3_stubbed.rb +95 -0
  682. data/vendor/gems/right_aws/test/sdb/test_active_sdb.rb +299 -0
  683. data/vendor/gems/right_aws/test/sdb/test_helper.rb +3 -0
  684. data/vendor/gems/right_aws/test/sdb/test_right_sdb.rb +247 -0
  685. data/vendor/gems/right_aws/test/sqs/test_helper.rb +2 -0
  686. data/vendor/gems/right_aws/test/sqs/test_right_sqs.rb +291 -0
  687. data/vendor/gems/right_aws/test/sqs/test_right_sqs_gen2.rb +209 -0
  688. data/vendor/gems/right_aws/test/test_credentials.rb +37 -0
  689. data/vendor/gems/right_aws/test/ts_right_aws.rb +14 -0
  690. data/vendor/gems/right_http_connection/History.txt +59 -0
  691. data/vendor/gems/right_http_connection/Manifest.txt +7 -0
  692. data/vendor/gems/right_http_connection/README.txt +54 -0
  693. data/vendor/gems/right_http_connection/Rakefile +103 -0
  694. data/vendor/gems/right_http_connection/lib/net_fix.rb +160 -0
  695. data/vendor/gems/right_http_connection/lib/right_http_connection.rb +442 -0
  696. data/vendor/gems/right_http_connection/right_http_connection.gemspec +31 -0
  697. data/vendor/gems/right_http_connection/setup.rb +1585 -0
  698. data/vendor/gems/shoulda/CONTRIBUTION_GUIDELINES.rdoc +10 -0
  699. data/vendor/gems/shoulda/MIT-LICENSE +22 -0
  700. data/vendor/gems/shoulda/README.rdoc +171 -0
  701. data/vendor/gems/shoulda/Rakefile +72 -0
  702. data/vendor/gems/shoulda/bin/convert_to_should_syntax +42 -0
  703. data/vendor/gems/shoulda/init.rb +1 -0
  704. data/vendor/gems/shoulda/lib/shoulda.rb +9 -0
  705. data/vendor/gems/shoulda/lib/shoulda/action_controller.rb +26 -0
  706. data/vendor/gems/shoulda/lib/shoulda/action_controller/macros.rb +240 -0
  707. data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers.rb +37 -0
  708. data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/assign_to_matcher.rb +109 -0
  709. data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/filter_param_matcher.rb +57 -0
  710. data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/render_with_layout_matcher.rb +81 -0
  711. data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/respond_with_content_type_matcher.rb +74 -0
  712. data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/respond_with_matcher.rb +81 -0
  713. data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/route_matcher.rb +93 -0
  714. data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/set_session_matcher.rb +87 -0
  715. data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/set_the_flash_matcher.rb +85 -0
  716. data/vendor/gems/shoulda/lib/shoulda/action_mailer.rb +10 -0
  717. data/vendor/gems/shoulda/lib/shoulda/action_mailer/assertions.rb +38 -0
  718. data/vendor/gems/shoulda/lib/shoulda/action_view.rb +10 -0
  719. data/vendor/gems/shoulda/lib/shoulda/action_view/macros.rb +61 -0
  720. data/vendor/gems/shoulda/lib/shoulda/active_record.rb +16 -0
  721. data/vendor/gems/shoulda/lib/shoulda/active_record/assertions.rb +69 -0
  722. data/vendor/gems/shoulda/lib/shoulda/active_record/helpers.rb +27 -0
  723. data/vendor/gems/shoulda/lib/shoulda/active_record/macros.rb +512 -0
  724. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers.rb +43 -0
  725. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/allow_mass_assignment_of_matcher.rb +83 -0
  726. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/allow_value_matcher.rb +102 -0
  727. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/association_matcher.rb +226 -0
  728. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/ensure_inclusion_of_matcher.rb +87 -0
  729. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/ensure_length_of_matcher.rb +141 -0
  730. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/have_db_column_matcher.rb +169 -0
  731. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/have_db_index_matcher.rb +112 -0
  732. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/have_named_scope_matcher.rb +128 -0
  733. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/have_readonly_attribute_matcher.rb +59 -0
  734. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/validate_acceptance_of_matcher.rb +41 -0
  735. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/validate_format_of_matcher.rb +67 -0
  736. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/validate_numericality_of_matcher.rb +39 -0
  737. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/validate_presence_of_matcher.rb +60 -0
  738. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/validate_uniqueness_of_matcher.rb +148 -0
  739. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/validation_matcher.rb +57 -0
  740. data/vendor/gems/shoulda/lib/shoulda/assertions.rb +71 -0
  741. data/vendor/gems/shoulda/lib/shoulda/autoload_macros.rb +46 -0
  742. data/vendor/gems/shoulda/lib/shoulda/context.rb +402 -0
  743. data/vendor/gems/shoulda/lib/shoulda/helpers.rb +8 -0
  744. data/vendor/gems/shoulda/lib/shoulda/macros.rb +133 -0
  745. data/vendor/gems/shoulda/lib/shoulda/private_helpers.rb +13 -0
  746. data/vendor/gems/shoulda/lib/shoulda/proc_extensions.rb +14 -0
  747. data/vendor/gems/shoulda/lib/shoulda/rails.rb +13 -0
  748. data/vendor/gems/shoulda/lib/shoulda/rspec.rb +11 -0
  749. data/vendor/gems/shoulda/lib/shoulda/tasks.rb +3 -0
  750. data/vendor/gems/shoulda/lib/shoulda/tasks/list_tests.rake +29 -0
  751. data/vendor/gems/shoulda/lib/shoulda/tasks/yaml_to_shoulda.rake +28 -0
  752. data/vendor/gems/shoulda/lib/shoulda/test_unit.rb +22 -0
  753. data/vendor/gems/shoulda/rails/init.rb +7 -0
  754. data/vendor/gems/shoulda/shoulda.gemspec +31 -0
  755. data/vendor/gems/shoulda/tasks/shoulda.rake +1 -0
  756. data/vendor/gems/shoulda/test/README +36 -0
  757. data/vendor/gems/shoulda/test/fail_macros.rb +39 -0
  758. data/vendor/gems/shoulda/test/fixtures/addresses.yml +3 -0
  759. data/vendor/gems/shoulda/test/fixtures/friendships.yml +0 -0
  760. data/vendor/gems/shoulda/test/fixtures/posts.yml +5 -0
  761. data/vendor/gems/shoulda/test/fixtures/products.yml +0 -0
  762. data/vendor/gems/shoulda/test/fixtures/taggings.yml +0 -0
  763. data/vendor/gems/shoulda/test/fixtures/tags.yml +9 -0
  764. data/vendor/gems/shoulda/test/fixtures/users.yml +6 -0
  765. data/vendor/gems/shoulda/test/functional/posts_controller_test.rb +121 -0
  766. data/vendor/gems/shoulda/test/functional/users_controller_test.rb +19 -0
  767. data/vendor/gems/shoulda/test/matchers/active_record/allow_mass_assignment_of_matcher_test.rb +68 -0
  768. data/vendor/gems/shoulda/test/matchers/active_record/allow_value_matcher_test.rb +64 -0
  769. data/vendor/gems/shoulda/test/matchers/active_record/association_matcher_test.rb +263 -0
  770. data/vendor/gems/shoulda/test/matchers/active_record/ensure_inclusion_of_matcher_test.rb +80 -0
  771. data/vendor/gems/shoulda/test/matchers/active_record/ensure_length_of_matcher_test.rb +158 -0
  772. data/vendor/gems/shoulda/test/matchers/active_record/have_db_column_matcher_test.rb +169 -0
  773. data/vendor/gems/shoulda/test/matchers/active_record/have_db_index_matcher_test.rb +91 -0
  774. data/vendor/gems/shoulda/test/matchers/active_record/have_named_scope_matcher_test.rb +65 -0
  775. data/vendor/gems/shoulda/test/matchers/active_record/have_readonly_attributes_matcher_test.rb +29 -0
  776. data/vendor/gems/shoulda/test/matchers/active_record/validate_acceptance_of_matcher_test.rb +44 -0
  777. data/vendor/gems/shoulda/test/matchers/active_record/validate_format_of_matcher_test.rb +39 -0
  778. data/vendor/gems/shoulda/test/matchers/active_record/validate_numericality_of_matcher_test.rb +52 -0
  779. data/vendor/gems/shoulda/test/matchers/active_record/validate_presence_of_matcher_test.rb +86 -0
  780. data/vendor/gems/shoulda/test/matchers/active_record/validate_uniqueness_of_matcher_test.rb +147 -0
  781. data/vendor/gems/shoulda/test/matchers/controller/assign_to_matcher_test.rb +35 -0
  782. data/vendor/gems/shoulda/test/matchers/controller/filter_param_matcher_test.rb +32 -0
  783. data/vendor/gems/shoulda/test/matchers/controller/render_with_layout_matcher_test.rb +33 -0
  784. data/vendor/gems/shoulda/test/matchers/controller/respond_with_content_type_matcher_test.rb +32 -0
  785. data/vendor/gems/shoulda/test/matchers/controller/respond_with_matcher_test.rb +106 -0
  786. data/vendor/gems/shoulda/test/matchers/controller/route_matcher_test.rb +58 -0
  787. data/vendor/gems/shoulda/test/matchers/controller/set_session_matcher_test.rb +38 -0
  788. data/vendor/gems/shoulda/test/matchers/controller/set_the_flash_matcher.rb +41 -0
  789. data/vendor/gems/shoulda/test/model_builder.rb +106 -0
  790. data/vendor/gems/shoulda/test/other/autoload_macro_test.rb +18 -0
  791. data/vendor/gems/shoulda/test/other/context_test.rb +189 -0
  792. data/vendor/gems/shoulda/test/other/convert_to_should_syntax_test.rb +63 -0
  793. data/vendor/gems/shoulda/test/other/helpers_test.rb +340 -0
  794. data/vendor/gems/shoulda/test/other/private_helpers_test.rb +32 -0
  795. data/vendor/gems/shoulda/test/other/should_test.rb +271 -0
  796. data/vendor/gems/shoulda/test/rails_root/app/controllers/application_controller.rb +25 -0
  797. data/vendor/gems/shoulda/test/rails_root/app/controllers/posts_controller.rb +87 -0
  798. data/vendor/gems/shoulda/test/rails_root/app/controllers/users_controller.rb +84 -0
  799. data/vendor/gems/shoulda/test/rails_root/app/helpers/application_helper.rb +3 -0
  800. data/vendor/gems/shoulda/test/rails_root/app/helpers/posts_helper.rb +2 -0
  801. data/vendor/gems/shoulda/test/rails_root/app/helpers/users_helper.rb +2 -0
  802. data/vendor/gems/shoulda/test/rails_root/app/models/address.rb +7 -0
  803. data/vendor/gems/shoulda/test/rails_root/app/models/flea.rb +3 -0
  804. data/vendor/gems/shoulda/test/rails_root/app/models/friendship.rb +4 -0
  805. data/vendor/gems/shoulda/test/rails_root/app/models/pets/cat.rb +7 -0
  806. data/vendor/gems/shoulda/test/rails_root/app/models/pets/dog.rb +10 -0
  807. data/vendor/gems/shoulda/test/rails_root/app/models/post.rb +12 -0
  808. data/vendor/gems/shoulda/test/rails_root/app/models/product.rb +12 -0
  809. data/vendor/gems/shoulda/test/rails_root/app/models/profile.rb +2 -0
  810. data/vendor/gems/shoulda/test/rails_root/app/models/registration.rb +2 -0
  811. data/vendor/gems/shoulda/test/rails_root/app/models/tag.rb +8 -0
  812. data/vendor/gems/shoulda/test/rails_root/app/models/tagging.rb +4 -0
  813. data/vendor/gems/shoulda/test/rails_root/app/models/treat.rb +3 -0
  814. data/vendor/gems/shoulda/test/rails_root/app/models/user.rb +32 -0
  815. data/vendor/gems/shoulda/test/rails_root/app/views/layouts/posts.rhtml +19 -0
  816. data/vendor/gems/shoulda/test/rails_root/app/views/layouts/users.rhtml +17 -0
  817. data/vendor/gems/shoulda/test/rails_root/app/views/layouts/wide.html.erb +1 -0
  818. data/vendor/gems/shoulda/test/rails_root/app/views/posts/edit.rhtml +27 -0
  819. data/vendor/gems/shoulda/test/rails_root/app/views/posts/index.rhtml +25 -0
  820. data/vendor/gems/shoulda/test/rails_root/app/views/posts/new.rhtml +26 -0
  821. data/vendor/gems/shoulda/test/rails_root/app/views/posts/show.rhtml +18 -0
  822. data/vendor/gems/shoulda/test/rails_root/app/views/users/edit.rhtml +22 -0
  823. data/vendor/gems/shoulda/test/rails_root/app/views/users/index.rhtml +22 -0
  824. data/vendor/gems/shoulda/test/rails_root/app/views/users/new.rhtml +21 -0
  825. data/vendor/gems/shoulda/test/rails_root/app/views/users/show.rhtml +13 -0
  826. data/vendor/gems/shoulda/test/rails_root/config/boot.rb +110 -0
  827. data/vendor/gems/shoulda/test/rails_root/config/database.yml +4 -0
  828. data/vendor/gems/shoulda/test/rails_root/config/environment.rb +18 -0
  829. data/vendor/gems/shoulda/test/rails_root/config/environments/test.rb +0 -0
  830. data/vendor/gems/shoulda/test/rails_root/config/initializers/new_rails_defaults.rb +15 -0
  831. data/vendor/gems/shoulda/test/rails_root/config/initializers/shoulda.rb +8 -0
  832. data/vendor/gems/shoulda/test/rails_root/config/routes.rb +6 -0
  833. data/vendor/gems/shoulda/test/rails_root/db/migrate/001_create_users.rb +19 -0
  834. data/vendor/gems/shoulda/test/rails_root/db/migrate/002_create_posts.rb +13 -0
  835. data/vendor/gems/shoulda/test/rails_root/db/migrate/003_create_taggings.rb +12 -0
  836. data/vendor/gems/shoulda/test/rails_root/db/migrate/004_create_tags.rb +11 -0
  837. data/vendor/gems/shoulda/test/rails_root/db/migrate/005_create_dogs.rb +12 -0
  838. data/vendor/gems/shoulda/test/rails_root/db/migrate/006_create_addresses.rb +14 -0
  839. data/vendor/gems/shoulda/test/rails_root/db/migrate/007_create_fleas.rb +11 -0
  840. data/vendor/gems/shoulda/test/rails_root/db/migrate/008_create_dogs_fleas.rb +12 -0
  841. data/vendor/gems/shoulda/test/rails_root/db/migrate/009_create_products.rb +17 -0
  842. data/vendor/gems/shoulda/test/rails_root/db/migrate/010_create_friendships.rb +14 -0
  843. data/vendor/gems/shoulda/test/rails_root/db/migrate/011_create_treats.rb +12 -0
  844. data/vendor/gems/shoulda/test/rails_root/db/migrate/20090506203502_create_profiles.rb +12 -0
  845. data/vendor/gems/shoulda/test/rails_root/db/migrate/20090506203536_create_registrations.rb +14 -0
  846. data/vendor/gems/shoulda/test/rails_root/db/migrate/20090513104502_create_cats.rb +12 -0
  847. data/vendor/gems/shoulda/test/rails_root/db/schema.rb +0 -0
  848. data/vendor/gems/shoulda/test/rails_root/public/404.html +30 -0
  849. data/vendor/gems/shoulda/test/rails_root/public/422.html +30 -0
  850. data/vendor/gems/shoulda/test/rails_root/public/500.html +30 -0
  851. data/vendor/gems/shoulda/test/rails_root/script/console +3 -0
  852. data/vendor/gems/shoulda/test/rails_root/script/generate +3 -0
  853. data/vendor/gems/shoulda/test/rails_root/test/shoulda_macros/custom_macro.rb +6 -0
  854. data/vendor/gems/shoulda/test/rails_root/vendor/gems/gem_with_macro-0.0.1/shoulda_macros/gem_macro.rb +6 -0
  855. data/vendor/gems/shoulda/test/rails_root/vendor/plugins/plugin_with_macro/shoulda_macros/plugin_macro.rb +6 -0
  856. data/vendor/gems/shoulda/test/rspec_test.rb +207 -0
  857. data/vendor/gems/shoulda/test/test_helper.rb +28 -0
  858. data/vendor/gems/shoulda/test/unit/address_test.rb +10 -0
  859. data/vendor/gems/shoulda/test/unit/cat_test.rb +7 -0
  860. data/vendor/gems/shoulda/test/unit/dog_test.rb +9 -0
  861. data/vendor/gems/shoulda/test/unit/flea_test.rb +6 -0
  862. data/vendor/gems/shoulda/test/unit/friendship_test.rb +6 -0
  863. data/vendor/gems/shoulda/test/unit/post_test.rb +19 -0
  864. data/vendor/gems/shoulda/test/unit/product_test.rb +23 -0
  865. data/vendor/gems/shoulda/test/unit/tag_test.rb +15 -0
  866. data/vendor/gems/shoulda/test/unit/tagging_test.rb +6 -0
  867. data/vendor/gems/shoulda/test/unit/user_test.rb +80 -0
  868. data/vendor/gems/thrift/CHANGELOG +1 -0
  869. data/vendor/gems/thrift/Makefile.am +47 -0
  870. data/vendor/gems/thrift/Manifest +81 -0
  871. data/vendor/gems/thrift/README +43 -0
  872. data/vendor/gems/thrift/Rakefile +104 -0
  873. data/vendor/gems/thrift/benchmark/Benchmark.thrift +24 -0
  874. data/vendor/gems/thrift/benchmark/benchmark.rb +271 -0
  875. data/vendor/gems/thrift/benchmark/client.rb +74 -0
  876. data/vendor/gems/thrift/benchmark/server.rb +82 -0
  877. data/vendor/gems/thrift/benchmark/thin_server.rb +44 -0
  878. data/vendor/gems/thrift/ext/binary_protocol_accelerated.c +474 -0
  879. data/vendor/gems/thrift/ext/binary_protocol_accelerated.h +20 -0
  880. data/vendor/gems/thrift/ext/compact_protocol.c +665 -0
  881. data/vendor/gems/thrift/ext/compact_protocol.h +20 -0
  882. data/vendor/gems/thrift/ext/constants.h +95 -0
  883. data/vendor/gems/thrift/ext/extconf.rb +26 -0
  884. data/vendor/gems/thrift/ext/macros.h +41 -0
  885. data/vendor/gems/thrift/ext/memory_buffer.c +76 -0
  886. data/vendor/gems/thrift/ext/memory_buffer.h +20 -0
  887. data/vendor/gems/thrift/ext/protocol.c +185 -0
  888. data/vendor/gems/thrift/ext/protocol.h +20 -0
  889. data/vendor/gems/thrift/ext/struct.c +606 -0
  890. data/vendor/gems/thrift/ext/struct.h +67 -0
  891. data/vendor/gems/thrift/ext/thrift_native.c +194 -0
  892. data/vendor/gems/thrift/lib/thrift.rb +59 -0
  893. data/vendor/gems/thrift/lib/thrift/client.rb +62 -0
  894. data/vendor/gems/thrift/lib/thrift/core_ext.rb +23 -0
  895. data/vendor/gems/thrift/lib/thrift/core_ext/fixnum.rb +29 -0
  896. data/vendor/gems/thrift/lib/thrift/exceptions.rb +82 -0
  897. data/vendor/gems/thrift/lib/thrift/processor.rb +57 -0
  898. data/vendor/gems/thrift/lib/thrift/protocol/base_protocol.rb +290 -0
  899. data/vendor/gems/thrift/lib/thrift/protocol/binary_protocol.rb +225 -0
  900. data/vendor/gems/thrift/lib/thrift/protocol/binary_protocol_accelerated.rb +35 -0
  901. data/vendor/gems/thrift/lib/thrift/protocol/compact_protocol.rb +422 -0
  902. data/vendor/gems/thrift/lib/thrift/serializer/deserializer.rb +33 -0
  903. data/vendor/gems/thrift/lib/thrift/serializer/serializer.rb +34 -0
  904. data/vendor/gems/thrift/lib/thrift/server/base_server.rb +31 -0
  905. data/vendor/gems/thrift/lib/thrift/server/mongrel_http_server.rb +58 -0
  906. data/vendor/gems/thrift/lib/thrift/server/nonblocking_server.rb +296 -0
  907. data/vendor/gems/thrift/lib/thrift/server/simple_server.rb +43 -0
  908. data/vendor/gems/thrift/lib/thrift/server/thread_pool_server.rb +75 -0
  909. data/vendor/gems/thrift/lib/thrift/server/threaded_server.rb +47 -0
  910. data/vendor/gems/thrift/lib/thrift/struct.rb +298 -0
  911. data/vendor/gems/thrift/lib/thrift/thrift_native.rb +24 -0
  912. data/vendor/gems/thrift/lib/thrift/transport/base_server_transport.rb +37 -0
  913. data/vendor/gems/thrift/lib/thrift/transport/base_transport.rb +70 -0
  914. data/vendor/gems/thrift/lib/thrift/transport/buffered_transport.rb +77 -0
  915. data/vendor/gems/thrift/lib/thrift/transport/framed_transport.rb +90 -0
  916. data/vendor/gems/thrift/lib/thrift/transport/http_client_transport.rb +45 -0
  917. data/vendor/gems/thrift/lib/thrift/transport/io_stream_transport.rb +39 -0
  918. data/vendor/gems/thrift/lib/thrift/transport/memory_buffer_transport.rb +96 -0
  919. data/vendor/gems/thrift/lib/thrift/transport/server_socket.rb +63 -0
  920. data/vendor/gems/thrift/lib/thrift/transport/socket.rb +136 -0
  921. data/vendor/gems/thrift/lib/thrift/transport/unix_server_socket.rb +60 -0
  922. data/vendor/gems/thrift/lib/thrift/transport/unix_socket.rb +40 -0
  923. data/vendor/gems/thrift/lib/thrift/types.rb +101 -0
  924. data/vendor/gems/thrift/script/proto_benchmark.rb +121 -0
  925. data/vendor/gems/thrift/script/read_struct.rb +43 -0
  926. data/vendor/gems/thrift/script/write_struct.rb +30 -0
  927. data/vendor/gems/thrift/setup.rb +1585 -0
  928. data/vendor/gems/thrift/spec/ThriftSpec.thrift +84 -0
  929. data/vendor/gems/thrift/spec/base_protocol_spec.rb +160 -0
  930. data/vendor/gems/thrift/spec/base_transport_spec.rb +351 -0
  931. data/vendor/gems/thrift/spec/binary_protocol_accelerated_spec.rb +41 -0
  932. data/vendor/gems/thrift/spec/binary_protocol_spec.rb +63 -0
  933. data/vendor/gems/thrift/spec/binary_protocol_spec_shared.rb +375 -0
  934. data/vendor/gems/thrift/spec/client_spec.rb +100 -0
  935. data/vendor/gems/thrift/spec/compact_protocol_spec.rb +117 -0
  936. data/vendor/gems/thrift/spec/exception_spec.rb +142 -0
  937. data/vendor/gems/thrift/spec/http_client_spec.rb +49 -0
  938. data/vendor/gems/thrift/spec/mongrel_http_server_spec.rb +117 -0
  939. data/vendor/gems/thrift/spec/nonblocking_server_spec.rb +265 -0
  940. data/vendor/gems/thrift/spec/processor_spec.rb +83 -0
  941. data/vendor/gems/thrift/spec/serializer_spec.rb +69 -0
  942. data/vendor/gems/thrift/spec/server_socket_spec.rb +80 -0
  943. data/vendor/gems/thrift/spec/server_spec.rb +160 -0
  944. data/vendor/gems/thrift/spec/socket_spec.rb +61 -0
  945. data/vendor/gems/thrift/spec/socket_spec_shared.rb +104 -0
  946. data/vendor/gems/thrift/spec/spec_helper.rb +60 -0
  947. data/vendor/gems/thrift/spec/struct_spec.rb +252 -0
  948. data/vendor/gems/thrift/spec/types_spec.rb +116 -0
  949. data/vendor/gems/thrift/spec/unix_socket_spec.rb +108 -0
  950. data/vendor/gems/trollop/FAQ.txt +66 -17
  951. data/vendor/gems/trollop/History.txt +4 -0
  952. data/vendor/gems/trollop/lib/trollop.rb +9 -5
  953. data/vendor/gems/trollop/test/test_trollop.rb +6 -0
  954. data/vendor/gems/trollop/www/index.html +12 -7
  955. metadata +958 -548
  956. data/History.txt +0 -38
  957. data/PostInstall.txt +0 -19
  958. data/README.txt +0 -67
  959. data/bin/cloud-provision +0 -45
  960. data/bin/cloud-run +0 -37
  961. data/bin/cloud-setup-dev +0 -36
  962. data/bin/install-poolparty +0 -22
  963. data/bin/server-butterfly +0 -25
  964. data/bin/server-cloud-elections +0 -31
  965. data/bin/server-ensure-provisioning +0 -33
  966. data/bin/server-fire-cmd +0 -14
  967. data/bin/server-get-load +0 -15
  968. data/bin/server-list-active +0 -32
  969. data/bin/server-manage-election +0 -58
  970. data/bin/server-monitor.ru +0 -42
  971. data/bin/server-query-agent +0 -15
  972. data/bin/server-rerun +0 -23
  973. data/bin/server-send-command +0 -18
  974. data/bin/server-show-stats +0 -17
  975. data/bin/server-write-new-nodes +0 -26
  976. data/examples/fairchild.rb +0 -37
  977. data/examples/fairchild_chef.rb +0 -19
  978. data/examples/maize.rb +0 -37
  979. data/examples/metavirt_cloud.rb +0 -33
  980. data/examples/paparazzi.conf.erb +0 -21
  981. data/examples/plugin_without_plugin_directory.rb +0 -12
  982. data/examples/vmrun_cloud.rb +0 -17
  983. data/generators/poolspec/USAGE +0 -5
  984. data/generators/poolspec/poolspec_generator.rb +0 -58
  985. data/generators/poolspec/templates/pool_spec_template.erb +0 -9
  986. data/lib/poolparty/aska.rb +0 -144
  987. data/lib/poolparty/core/array.rb +0 -60
  988. data/lib/poolparty/core/class.rb +0 -26
  989. data/lib/poolparty/core/exception.rb +0 -10
  990. data/lib/poolparty/core/float.rb +0 -13
  991. data/lib/poolparty/core/hash.rb +0 -139
  992. data/lib/poolparty/core/integer.rb +0 -11
  993. data/lib/poolparty/core/kernel.rb +0 -66
  994. data/lib/poolparty/core/my_open_struct.rb +0 -18
  995. data/lib/poolparty/core/nil.rb +0 -8
  996. data/lib/poolparty/core/object.rb +0 -125
  997. data/lib/poolparty/core/ordered_hash.rb +0 -99
  998. data/lib/poolparty/core/string.rb +0 -213
  999. data/lib/poolparty/core/symbol.rb +0 -27
  1000. data/lib/poolparty/dependencies.rb +0 -49
  1001. data/lib/poolparty/dependency_resolver/chef_resolver.rb +0 -254
  1002. data/lib/poolparty/dependency_resolver/dependency_resolver.rb +0 -42
  1003. data/lib/poolparty/dependency_resolver/dependency_resolver_cloud_extensions.rb +0 -29
  1004. data/lib/poolparty/dependency_resolver/puppet.rb +0 -74
  1005. data/lib/poolparty/dependency_resolver/puppet_resolver.rb +0 -166
  1006. data/lib/poolparty/exceptions/CloudNotFoundException.rb +0 -7
  1007. data/lib/poolparty/exceptions/LoadRulesException.rb +0 -7
  1008. data/lib/poolparty/exceptions/MasterException.rb +0 -10
  1009. data/lib/poolparty/exceptions/ProvisionerException.rb +0 -5
  1010. data/lib/poolparty/exceptions/RemoteException.rb +0 -12
  1011. data/lib/poolparty/exceptions/ResourceException.rb +0 -7
  1012. data/lib/poolparty/exceptions/RuntimeException.rb +0 -7
  1013. data/lib/poolparty/exceptions/SpecException.rb +0 -7
  1014. data/lib/poolparty/exceptions/TemplateNotFound.rb +0 -7
  1015. data/lib/poolparty/exceptions/UnacceptableCommand.rb +0 -5
  1016. data/lib/poolparty/exceptions/dependency_resolver_exception.rb +0 -5
  1017. data/lib/poolparty/exceptions/package_exception.rb +0 -7
  1018. data/lib/poolparty/extra/duration.rb +0 -96
  1019. data/lib/poolparty/helpers/binary.rb +0 -70
  1020. data/lib/poolparty/helpers/console.rb +0 -43
  1021. data/lib/poolparty/helpers/hash_printer.rb +0 -44
  1022. data/lib/poolparty/helpers/loading.rb +0 -4
  1023. data/lib/poolparty/helpers/nice_printer.rb +0 -36
  1024. data/lib/poolparty/helpers/optioner.rb +0 -161
  1025. data/lib/poolparty/helpers/ruberl.rb +0 -33
  1026. data/lib/poolparty/installers/base_installer.rb +0 -113
  1027. data/lib/poolparty/installers/vmrun.rb +0 -144
  1028. data/lib/poolparty/lite.rb +0 -33
  1029. data/lib/poolparty/modules/callbacks.rb +0 -57
  1030. data/lib/poolparty/modules/cloud_dsl.rb +0 -38
  1031. data/lib/poolparty/modules/cloud_resourcer.rb +0 -110
  1032. data/lib/poolparty/modules/daemonizable.rb +0 -140
  1033. data/lib/poolparty/modules/definable_resource.rb +0 -53
  1034. data/lib/poolparty/modules/file_writer.rb +0 -95
  1035. data/lib/poolparty/modules/output.rb +0 -13
  1036. data/lib/poolparty/modules/pinger.rb +0 -35
  1037. data/lib/poolparty/modules/pretty_printer.rb +0 -40
  1038. data/lib/poolparty/modules/resourcing_dsl.rb +0 -50
  1039. data/lib/poolparty/modules/s3_string.rb +0 -32
  1040. data/lib/poolparty/modules/safe_instance.rb +0 -31
  1041. data/lib/poolparty/modules/searchable_paths.rb +0 -100
  1042. data/lib/poolparty/modules/thread_pool.rb +0 -107
  1043. data/lib/poolparty/modules/user_helpers.rb +0 -20
  1044. data/lib/poolparty/monitors/base_monitor.rb +0 -97
  1045. data/lib/poolparty/monitors/monitor_daemon.rb +0 -168
  1046. data/lib/poolparty/monitors/monitor_rack.rb +0 -137
  1047. data/lib/poolparty/monitors/monitors/clock_monitor.rb +0 -20
  1048. data/lib/poolparty/monitors/monitors/cloud_monitor.rb +0 -36
  1049. data/lib/poolparty/monitors/monitors/elections_monitor.rb +0 -76
  1050. data/lib/poolparty/monitors/monitors/favicon_monitor.rb +0 -12
  1051. data/lib/poolparty/monitors/monitors/load_monitor.rb +0 -9
  1052. data/lib/poolparty/monitors/monitors/memory_monitor.rb +0 -50
  1053. data/lib/poolparty/monitors/monitors/neighborhood_monitor.rb +0 -80
  1054. data/lib/poolparty/monitors/monitors/stats_monitor.rb +0 -206
  1055. data/lib/poolparty/net/init.rb +0 -16
  1056. data/lib/poolparty/net/remote_instance.rb +0 -93
  1057. data/lib/poolparty/net/remoter/cloud_control.rb +0 -24
  1058. data/lib/poolparty/net/remoter/connections.rb +0 -177
  1059. data/lib/poolparty/net/remoter/interactive.rb +0 -62
  1060. data/lib/poolparty/net/remoter_base.rb +0 -262
  1061. data/lib/poolparty/net/remoter_bases/ec2/ec2.rb +0 -300
  1062. data/lib/poolparty/net/remoter_bases/ec2/ec2_remote_instance.rb +0 -64
  1063. data/lib/poolparty/net/remoter_bases/ec2/ec2_response_object.rb +0 -129
  1064. data/lib/poolparty/net/remoter_bases/libvirt/libvirt.rb +0 -73
  1065. data/lib/poolparty/net/remoter_bases/libvirt/libvirt_instance.rb +0 -64
  1066. data/lib/poolparty/net/remoter_bases/metavirt/metavirt.rb +0 -110
  1067. data/lib/poolparty/net/remoter_bases/metavirt/metavirt_instance.rb +0 -37
  1068. data/lib/poolparty/net/remoter_bases/vmrun/utilities/vm_disk.rb +0 -12
  1069. data/lib/poolparty/net/remoter_bases/vmrun/utilities/vmx.rb +0 -33
  1070. data/lib/poolparty/net/remoter_bases/vmrun/utilities/vmx_file.rb +0 -117
  1071. data/lib/poolparty/net/remoter_bases/vmrun/vmrun.rb +0 -181
  1072. data/lib/poolparty/net/remoter_bases/vmrun/vmrun_instance.rb +0 -87
  1073. data/lib/poolparty/plugins/apache2/apache.rb +0 -266
  1074. data/lib/poolparty/plugins/authorized_key.rb +0 -29
  1075. data/lib/poolparty/plugins/bind.rb +0 -10
  1076. data/lib/poolparty/plugins/chef/chef.rb +0 -161
  1077. data/lib/poolparty/plugins/chef/chef_deploy.rb +0 -55
  1078. data/lib/poolparty/plugins/chef/chef_deploy_definition.rb +0 -32
  1079. data/lib/poolparty/plugins/chef/chef_library.rb +0 -7
  1080. data/lib/poolparty/plugins/chef/chef_recipe.rb +0 -7
  1081. data/lib/poolparty/plugins/chef/include_chef_recipe.rb +0 -14
  1082. data/lib/poolparty/plugins/deploy_directory.rb +0 -62
  1083. data/lib/poolparty/plugins/gem_package.rb +0 -65
  1084. data/lib/poolparty/plugins/haproxy.rb +0 -60
  1085. data/lib/poolparty/plugins/heartbeat.rb +0 -16
  1086. data/lib/poolparty/plugins/host.rb +0 -39
  1087. data/lib/poolparty/plugins/line_in_file.rb +0 -36
  1088. data/lib/poolparty/plugins/plugin_template.rb +0 -13
  1089. data/lib/poolparty/plugins/poolparty_base_packages.rb +0 -14
  1090. data/lib/poolparty/plugins/rails_deploy.rb +0 -128
  1091. data/lib/poolparty/plugins/ruby.rb +0 -42
  1092. data/lib/poolparty/plugins/runit.rb +0 -21
  1093. data/lib/poolparty/plugins/sshkey.rb +0 -50
  1094. data/lib/poolparty/plugins/svn.rb +0 -67
  1095. data/lib/poolparty/poolparty/cloud.rb +0 -399
  1096. data/lib/poolparty/poolparty/default.rb +0 -165
  1097. data/lib/poolparty/poolparty/key.rb +0 -69
  1098. data/lib/poolparty/poolparty/loggable.rb +0 -28
  1099. data/lib/poolparty/poolparty/neighborhoods.rb +0 -113
  1100. data/lib/poolparty/poolparty/plugin.rb +0 -102
  1101. data/lib/poolparty/poolparty/pool.rb +0 -103
  1102. data/lib/poolparty/poolparty/poolparty_base_class.rb +0 -212
  1103. data/lib/poolparty/poolparty/resource.rb +0 -184
  1104. data/lib/poolparty/poolparty/script.rb +0 -58
  1105. data/lib/poolparty/poolparty/service.rb +0 -38
  1106. data/lib/poolparty/poolparty/template.rb +0 -27
  1107. data/lib/poolparty/provision/boot_strapper.rb +0 -175
  1108. data/lib/poolparty/provision/configurations/chef.rb +0 -26
  1109. data/lib/poolparty/provision/configurations/puppet.rb +0 -28
  1110. data/lib/poolparty/provision/dr_configure.rb +0 -147
  1111. data/lib/poolparty/resources.rb +0 -42
  1112. data/lib/poolparty/resources/remote_file.rb +0 -52
  1113. data/lib/poolparty/resources/symlink.rb +0 -48
  1114. data/lib/poolparty/schema.rb +0 -77
  1115. data/lib/poolparty/templates/apache2/apache2.conf +0 -14
  1116. data/lib/poolparty/templates/apache2/base.conf.erb +0 -168
  1117. data/lib/poolparty/templates/apache2/browser_fixes.conf.erb +0 -26
  1118. data/lib/poolparty/templates/apache2/debian.conf.erb +0 -675
  1119. data/lib/poolparty/templates/apache2/default-site.conf.erb +0 -41
  1120. data/lib/poolparty/templates/apache2/directory_indexes.conf.erb +0 -101
  1121. data/lib/poolparty/templates/apache2/logging-syslog.conf.erb +0 -42
  1122. data/lib/poolparty/templates/apache2/mime-extras.conf.erb +0 -211
  1123. data/lib/poolparty/templates/apache2/mpm-worker.conf.erb +0 -20
  1124. data/lib/poolparty/templates/apache2/mpm-worker.erb +0 -20
  1125. data/lib/poolparty/templates/apache2/passenger.conf.erb +0 -20
  1126. data/lib/poolparty/templates/apache2/php.ini.erb +0 -1253
  1127. data/lib/poolparty/templates/apache2/server-status.erb +0 -19
  1128. data/lib/poolparty/templates/authkeys +0 -2
  1129. data/lib/poolparty/templates/cib.xml +0 -54
  1130. data/lib/poolparty/templates/erlang_cookie_maker +0 -6
  1131. data/lib/poolparty/templates/gem +0 -27
  1132. data/lib/poolparty/templates/gemrc_template +0 -11
  1133. data/lib/poolparty/templates/ha.cf +0 -17
  1134. data/lib/poolparty/templates/haproxy.conf +0 -38
  1135. data/lib/poolparty/templates/haresources +0 -3
  1136. data/lib/poolparty/templates/logd.cf +0 -42
  1137. data/lib/poolparty/templates/messenger/client/log-run.erb +0 -2
  1138. data/lib/poolparty/templates/messenger/client/run.erb +0 -4
  1139. data/lib/poolparty/templates/messenger/master/log-run.erb +0 -2
  1140. data/lib/poolparty/templates/messenger/master/run.erb +0 -4
  1141. data/lib/poolparty/templates/messenger/node/log-run.erb +0 -2
  1142. data/lib/poolparty/templates/messenger/node/run.erb +0 -4
  1143. data/lib/poolparty/templates/monitor.ru +0 -29
  1144. data/lib/poolparty/templates/namespaceauth.conf +0 -19
  1145. data/lib/poolparty/templates/php.ini.erb +0 -1253
  1146. data/lib/poolparty/templates/poolparty.monitor +0 -14
  1147. data/lib/poolparty/templates/puppet/add_puppet_to_hosts +0 -6
  1148. data/lib/poolparty/templates/puppet/puppet.conf +0 -2
  1149. data/lib/poolparty/templates/puppet/puppetrunner +0 -14
  1150. data/lib/poolparty/templates/puppet/site.pp +0 -4
  1151. data/lib/poolparty/templates/puppetrunner +0 -14
  1152. data/lib/poolparty/templates/yaws.conf +0 -19
  1153. data/lib/poolparty/verification/verifier_base.rb +0 -27
  1154. data/lib/poolparty/verification/verifiers/http_match.rb +0 -43
  1155. data/lib/poolparty/verification/verifiers/http_status.rb +0 -59
  1156. data/lib/poolparty/verification/verifiers/ping.rb +0 -34
  1157. data/lib/poolparty/verification/verify.rb +0 -80
  1158. data/lib/poolpartycl.rb +0 -21
  1159. data/script/destroy +0 -14
  1160. data/script/generate +0 -14
  1161. data/spec/bin/bin_spec_helper.rb +0 -8
  1162. data/spec/bin/fixtures/bin_cloud_for_test.rb +0 -13
  1163. data/spec/bin/server-list-active_spec.rb +0 -22
  1164. data/spec/poolparty/aska/aska_spec.rb +0 -117
  1165. data/spec/poolparty/bin/console_spec.rb +0 -83
  1166. data/spec/poolparty/core/array_spec.rb +0 -48
  1167. data/spec/poolparty/core/float.rb +0 -13
  1168. data/spec/poolparty/core/hash_spec.rb +0 -83
  1169. data/spec/poolparty/core/kernel_spec.rb +0 -24
  1170. data/spec/poolparty/core/object_spec.rb +0 -7
  1171. data/spec/poolparty/core/ordered_hash_spec.rb +0 -48
  1172. data/spec/poolparty/core/string_spec.rb +0 -145
  1173. data/spec/poolparty/core/time_spec.rb +0 -49
  1174. data/spec/poolparty/dependencies_spec.rb +0 -11
  1175. data/spec/poolparty/dependency_resolver/chef_resolver_spec.rb +0 -105
  1176. data/spec/poolparty/dependency_resolver/dependency_resolver_cloud_extensions_spec.rb +0 -131
  1177. data/spec/poolparty/dependency_resolver/dependency_resolver_spec.rb +0 -16
  1178. data/spec/poolparty/dependency_resolver/puppet_resolver_spec.rb +0 -121
  1179. data/spec/poolparty/extra/deployments_spec.rb +0 -68
  1180. data/spec/poolparty/fixtures/clouds.json +0 -128
  1181. data/spec/poolparty/fixtures/fake_key.pub +0 -1
  1182. data/spec/poolparty/fixtures/test_template.erb +0 -1
  1183. data/spec/poolparty/helpers/binary_spec.rb +0 -26
  1184. data/spec/poolparty/helpers/hash_printer_spec.rb +0 -34
  1185. data/spec/poolparty/helpers/optioner_spec.rb +0 -43
  1186. data/spec/poolparty/modules/cloud_resourcer_spec.rb +0 -67
  1187. data/spec/poolparty/modules/definable_resource.rb +0 -9
  1188. data/spec/poolparty/modules/file_writer_spec.rb +0 -64
  1189. data/spec/poolparty/modules/s3_string_spec.rb +0 -15
  1190. data/spec/poolparty/modules/searchable_paths_spec.rb +0 -83
  1191. data/spec/poolparty/monitors/base_monitor_spec.rb +0 -112
  1192. data/spec/poolparty/monitors/monitors/cpu_monitor_spec.rb +0 -18
  1193. data/spec/poolparty/monitors/monitors/memory_monitor_spec.rb +0 -48
  1194. data/spec/poolparty/net/remote_instance_spec.rb +0 -16
  1195. data/spec/poolparty/net/remote_spec.rb +0 -287
  1196. data/spec/poolparty/net/remoter_base_spec.rb +0 -31
  1197. data/spec/poolparty/net/remoter_bases/ec2_mocks_and_stubs.rb +0 -22
  1198. data/spec/poolparty/net/remoter_bases/ec2_remote_instance_spec.rb +0 -74
  1199. data/spec/poolparty/net/remoter_bases/ec2_spec.rb +0 -137
  1200. data/spec/poolparty/net/remoter_spec.rb +0 -132
  1201. data/spec/poolparty/plugins/authorized_key_spec.rb +0 -23
  1202. data/spec/poolparty/plugins/chef_spec.rb +0 -7
  1203. data/spec/poolparty/plugins/deploydirectory_spec.rb +0 -64
  1204. data/spec/poolparty/plugins/git_spec.rb +0 -38
  1205. data/spec/poolparty/plugins/line_spec.rb +0 -22
  1206. data/spec/poolparty/poolparty/cloud_spec.rb +0 -335
  1207. data/spec/poolparty/poolparty/configurers/files/ruby_basic.rb +0 -14
  1208. data/spec/poolparty/poolparty/configurers/files/ruby_plugins.rb +0 -16
  1209. data/spec/poolparty/poolparty/configurers/ruby_spec.rb +0 -37
  1210. data/spec/poolparty/poolparty/default_spec.rb +0 -140
  1211. data/spec/poolparty/poolparty/example_spec.rb +0 -81
  1212. data/spec/poolparty/poolparty/haproxy_spec.rb +0 -7
  1213. data/spec/poolparty/poolparty/heartbeat_spec.rb +0 -7
  1214. data/spec/poolparty/poolparty/key_spec.rb +0 -42
  1215. data/spec/poolparty/poolparty/neighborhoods_spec.rb +0 -65
  1216. data/spec/poolparty/poolparty/plugin_model_spec.rb +0 -50
  1217. data/spec/poolparty/poolparty/plugin_spec.rb +0 -41
  1218. data/spec/poolparty/poolparty/pool_spec.rb +0 -94
  1219. data/spec/poolparty/poolparty/resource_spec.rb +0 -204
  1220. data/spec/poolparty/poolparty/script_spec.rb +0 -46
  1221. data/spec/poolparty/poolparty/service_spec.rb +0 -5
  1222. data/spec/poolparty/poolparty/template_spec.rb +0 -26
  1223. data/spec/poolparty/poolparty/test_plugins/sshkey_test +0 -2
  1224. data/spec/poolparty/poolparty/test_plugins/webserver.rb +0 -32
  1225. data/spec/poolparty/poolparty_base_class_spec.rb +0 -84
  1226. data/spec/poolparty/poolparty_spec.rb +0 -36
  1227. data/spec/poolparty/resources/cron_spec.rb +0 -44
  1228. data/spec/poolparty/resources/directory_spec.rb +0 -40
  1229. data/spec/poolparty/resources/exec_spec.rb +0 -37
  1230. data/spec/poolparty/resources/file_spec.rb +0 -64
  1231. data/spec/poolparty/resources/gem_spec.rb +0 -7
  1232. data/spec/poolparty/resources/package_spec.rb +0 -26
  1233. data/spec/poolparty/resources/service_spec.rb +0 -29
  1234. data/spec/poolparty/resources/sshkey_spec.rb +0 -39
  1235. data/spec/poolparty/resources/symlink_spec.rb +0 -29
  1236. data/spec/poolparty/resources/user_spec.rb +0 -48
  1237. data/spec/poolparty/resources/variable_spec.rb +0 -26
  1238. data/spec/poolparty/schema_spec.rb +0 -53
  1239. data/spec/poolparty/spec_helper.rb +0 -233
  1240. data/spec/poolparty/test_spec_helper.rb +0 -13
  1241. data/tasks/cloud.rake +0 -3
  1242. data/tasks/ec2.rake +0 -13
  1243. data/tasks/instance.rake +0 -2
  1244. data/tasks/server.rake +0 -44
  1245. data/tasks/spec.rake +0 -54
  1246. data/test/fixtures/fake_clouds.rb +0 -11
  1247. data/test/fixtures/metavirt_cloud.json +0 -1
  1248. data/test/fixtures/test_key +0 -1
  1249. data/test/poolparty/core/array_test.rb +0 -32
  1250. data/test/poolparty/core/hash_test.rb +0 -34
  1251. data/test/poolparty/core/object_test.rb +0 -29
  1252. data/test/poolparty/core/string_test.rb +0 -29
  1253. data/test/poolparty/dependency_resolver/chef_resolver_test.rb +0 -82
  1254. data/test/poolparty/dependency_resolver/puppet_resolver_test.rb +0 -85
  1255. data/test/poolparty/modules/callbacks_test.rb +0 -40
  1256. data/test/poolparty/modules/cloud_dsl_test.rb +0 -60
  1257. data/test/poolparty/monitors/test_base_monitor.rb +0 -17
  1258. data/test/poolparty/monitors/test_monitor_rack.rb +0 -26
  1259. data/test/poolparty/net/remoter_base_test.rb +0 -17
  1260. data/test/poolparty/net/remoter_bases/libvirt/libvirt_test.rb +0 -70
  1261. data/test/poolparty/net/remoter_bases/metavirt/metavirt_test.rb +0 -81
  1262. data/test/poolparty/net/remoter_bases/vmrun/vmrun_test.rb +0 -81
  1263. data/test/poolparty/net/remoter_test.rb +0 -14
  1264. data/test/poolparty/plugins/chef_deploy_test.rb +0 -37
  1265. data/test/poolparty/plugins/chef_plugin_test.rb +0 -23
  1266. data/test/poolparty/plugins/rails_deploy_test.rb +0 -50
  1267. data/test/poolparty/poolparty/cloud_test.rb +0 -65
  1268. data/test/poolparty/poolparty/isolated_cloud_test.rb +0 -25
  1269. data/test/poolparty/poolparty/neighborhood_test.rb +0 -23
  1270. data/test/poolparty/poolparty/plugin_test.rb +0 -19
  1271. data/test/poolparty/poolparty/pool_test.rb +0 -22
  1272. data/test/poolparty/poolparty/poolparty_base_class_test.rb +0 -122
  1273. data/test/poolparty/poolparty/schema_test.rb +0 -13
  1274. data/test/poolparty/poolparty/template_test.rb +0 -31
  1275. data/test/poolparty/provision/boot_strapper_test.rb +0 -6
  1276. data/test/poolparty/provision/dr_configure_test.rb +0 -6
  1277. data/test/poolparty/verification/verify_test.rb +0 -53
  1278. data/test/test_generator_helper.rb +0 -29
  1279. data/test/test_pool_spec_generator.rb +0 -47
  1280. data/test/test_poolparty.rb +0 -12
  1281. data/vendor/gems/suitcase/README.rdoc +0 -31
  1282. data/vendor/gems/suitcase/Rakefile +0 -57
  1283. data/vendor/gems/suitcase/VERSION.yml +0 -4
  1284. data/vendor/gems/suitcase/lib/suitcase.rb +0 -5
  1285. data/vendor/gems/suitcase/lib/suitcase/unzipper.rb +0 -15
  1286. data/vendor/gems/suitcase/lib/suitcase/zipper.rb +0 -167
  1287. data/vendor/gems/suitcase/suitcase.gemspec +0 -32
  1288. data/vendor/gems/suitcase/test/suitcase_test.rb +0 -108
  1289. data/vendor/gems/suitcase/test/test_dir/box.rb +0 -1
  1290. data/vendor/gems/suitcase/test/test_dir/gems/famoseagle-carrot-0.6.0.gem +0 -0
  1291. data/vendor/gems/suitcase/test/test_dir/test.txt +0 -1
  1292. data/vendor/gems/suitcase/test/test_helper.rb +0 -12
@@ -0,0 +1,215 @@
1
+ # Make sure HOME is set, regardless of OS, so that File.expand_path works
2
+ # as expected with tilde characters.
3
+ ENV['HOME'] ||= ENV['HOMEPATH'] ? "#{ENV['HOMEDRIVE']}#{ENV['HOMEPATH']}" : "."
4
+
5
+ require 'logger'
6
+
7
+ require 'net/ssh/config'
8
+ require 'net/ssh/errors'
9
+ require 'net/ssh/loggable'
10
+ require 'net/ssh/transport/session'
11
+ require 'net/ssh/authentication/session'
12
+ require 'net/ssh/connection/session'
13
+
14
+ module Net
15
+
16
+ # Net::SSH is a library for interacting, programmatically, with remote
17
+ # processes via the SSH2 protocol. Sessions are always initiated via
18
+ # Net::SSH.start. From there, a program interacts with the new SSH session
19
+ # via the convenience methods on Net::SSH::Connection::Session, by opening
20
+ # and interacting with new channels (Net::SSH::Connection:Session#open_channel
21
+ # and Net::SSH::Connection::Channel), or by forwarding local and/or
22
+ # remote ports through the connection (Net::SSH::Service::Forward).
23
+ #
24
+ # The SSH protocol is very event-oriented. Requests are sent from the client
25
+ # to the server, and are answered asynchronously. This gives great flexibility
26
+ # (since clients can have multiple requests pending at a time), but it also
27
+ # adds complexity. Net::SSH tries to manage this complexity by providing
28
+ # some simpler methods of synchronous communication (see Net::SSH::Connection::Session#exec!).
29
+ #
30
+ # In general, though, and if you want to do anything more complicated than
31
+ # simply executing commands and capturing their output, you'll need to use
32
+ # channels (Net::SSH::Connection::Channel) to build state machines that are
33
+ # executed while the event loop runs (Net::SSH::Connection::Session#loop).
34
+ #
35
+ # Net::SSH::Connection::Session and Net::SSH::Connection::Channel have more
36
+ # information about this technique.
37
+ #
38
+ # = "Um, all I want to do is X, just show me how!"
39
+ #
40
+ # == X == "execute a command and capture the output"
41
+ #
42
+ # Net::SSH.start("host", "user", :password => "password") do |ssh|
43
+ # result = ssh.exec!("ls -l")
44
+ # puts result
45
+ # end
46
+ #
47
+ # == X == "forward connections on a local port to a remote host"
48
+ #
49
+ # Net::SSH.start("host", "user", :password => "password") do |ssh|
50
+ # ssh.forward.local(1234, "www.google.com", 80)
51
+ # ssh.loop { true }
52
+ # end
53
+ #
54
+ # == X == "forward connections on a remote port to the local host"
55
+ #
56
+ # Net::SSH.start("host", "user", :password => "password") do |ssh|
57
+ # ssh.forward.remote(80, "www.google.com", 1234)
58
+ # ssh.loop { true }
59
+ # end
60
+ module SSH
61
+ # This is the set of options that Net::SSH.start recognizes. See
62
+ # Net::SSH.start for a description of each option.
63
+ VALID_OPTIONS = [
64
+ :auth_methods, :compression, :compression_level, :config, :encryption,
65
+ :forward_agent, :hmac, :host_key, :kex, :keys, :key_data, :languages,
66
+ :logger, :paranoid, :password, :port, :proxy, :rekey_blocks_limit,
67
+ :rekey_limit, :rekey_packet_limit, :timeout, :verbose,
68
+ :global_known_hosts_file, :user_known_hosts_file, :host_key_alias,
69
+ :host_name, :user, :properties, :passphrase
70
+ ]
71
+
72
+ # The standard means of starting a new SSH connection. When used with a
73
+ # block, the connection will be closed when the block terminates, otherwise
74
+ # the connection will just be returned. The yielded (or returned) value
75
+ # will be an instance of Net::SSH::Connection::Session (q.v.). (See also
76
+ # Net::SSH::Connection::Channel and Net::SSH::Service::Forward.)
77
+ #
78
+ # Net::SSH.start("host", "user") do |ssh|
79
+ # ssh.exec! "cp /some/file /another/location"
80
+ # hostname = ssh.exec!("hostname")
81
+ #
82
+ # ssh.open_channel do |ch|
83
+ # ch.exec "sudo -p 'sudo password: ' ls" do |ch, success|
84
+ # abort "could not execute sudo ls" unless success
85
+ #
86
+ # ch.on_data do |ch, data|
87
+ # print data
88
+ # if data =~ /sudo password: /
89
+ # ch.send_data("password\n")
90
+ # end
91
+ # end
92
+ # end
93
+ # end
94
+ #
95
+ # ssh.loop
96
+ # end
97
+ #
98
+ # This method accepts the following options (all are optional):
99
+ #
100
+ # * :auth_methods => an array of authentication methods to try
101
+ # * :compression => the compression algorithm to use, or +true+ to use
102
+ # whatever is supported.
103
+ # * :compression_level => the compression level to use when sending data
104
+ # * :config => set to +true+ to load the default OpenSSH config files
105
+ # (~/.ssh/config, /etc/ssh_config), or to +false+ to not load them, or to
106
+ # a file-name (or array of file-names) to load those specific configuration
107
+ # files. Defaults to +true+.
108
+ # * :encryption => the encryption cipher (or ciphers) to use
109
+ # * :forward_agent => set to true if you want the SSH agent connection to
110
+ # be forwarded
111
+ # * :global_known_hosts_file => the location of the global known hosts
112
+ # file. Set to an array if you want to specify multiple global known
113
+ # hosts files. Defaults to %w(/etc/ssh/known_hosts /etc/ssh/known_hosts2).
114
+ # * :hmac => the hmac algorithm (or algorithms) to use
115
+ # * :host_key => the host key algorithm (or algorithms) to use
116
+ # * :host_key_alias => the host name to use when looking up or adding a
117
+ # host to a known_hosts dictionary file
118
+ # * :host_name => the real host name or IP to log into. This is used
119
+ # instead of the +host+ parameter, and is primarily only useful when
120
+ # specified in an SSH configuration file. It lets you specify an
121
+ # "alias", similarly to adding an entry in /etc/hosts but without needing
122
+ # to modify /etc/hosts.
123
+ # * :kex => the key exchange algorithm (or algorithms) to use
124
+ # * :keys => an array of file names of private keys to use for publickey
125
+ # and hostbased authentication
126
+ # * :key_data => an array of strings, with each element of the array being
127
+ # a raw private key in PEM format.
128
+ # * :logger => the logger instance to use when logging
129
+ # * :paranoid => either true, false, or :very, specifying how strict
130
+ # host-key verification should be
131
+ # * :passphrase => the passphrase to use when loading a private key (default
132
+ # is +nil+, for no passphrase)
133
+ # * :password => the password to use to login
134
+ # * :port => the port to use when connecting to the remote host
135
+ # * :properties => a hash of key/value pairs to add to the new connection's
136
+ # properties (see Net::SSH::Connection::Session#properties)
137
+ # * :proxy => a proxy instance (see Proxy) to use when connecting
138
+ # * :rekey_blocks_limit => the max number of blocks to process before rekeying
139
+ # * :rekey_limit => the max number of bytes to process before rekeying
140
+ # * :rekey_packet_limit => the max number of packets to process before rekeying
141
+ # * :timeout => how long to wait for the initial connection to be made
142
+ # * :user => the user name to log in as; this overrides the +user+
143
+ # parameter, and is primarily only useful when provided via an SSH
144
+ # configuration file.
145
+ # * :user_known_hosts_file => the location of the user known hosts file.
146
+ # Set to an array to specify multiple user known hosts files.
147
+ # Defaults to %w(~/.ssh/known_hosts ~/.ssh/known_hosts2).
148
+ # * :verbose => how verbose to be (Logger verbosity constants, Logger::DEBUG
149
+ # is very verbose, Logger::FATAL is all but silent). Logger::FATAL is the
150
+ # default. The symbols :debug, :info, :warn, :error, and :fatal are also
151
+ # supported and are translated to the corresponding Logger constant.
152
+ def self.start(host, user, options={}, &block)
153
+ invalid_options = options.keys - VALID_OPTIONS
154
+ if invalid_options.any?
155
+ raise ArgumentError, "invalid option(s): #{invalid_options.join(', ')}"
156
+ end
157
+
158
+ options[:user] = user if user
159
+ options = configuration_for(host, options.fetch(:config, true)).merge(options)
160
+ host = options.fetch(:host_name, host)
161
+
162
+ if !options.key?(:logger)
163
+ options[:logger] = Logger.new(STDERR)
164
+ options[:logger].level = Logger::FATAL
165
+ end
166
+
167
+ if options[:verbose]
168
+ options[:logger].level = case options[:verbose]
169
+ when Fixnum then options[:verbose]
170
+ when :debug then Logger::DEBUG
171
+ when :info then Logger::INFO
172
+ when :warn then Logger::WARN
173
+ when :error then Logger::ERROR
174
+ when :fatal then Logger::FATAL
175
+ else raise ArgumentError, "can't convert #{options[:verbose].inspect} to any of the Logger level constants"
176
+ end
177
+ end
178
+
179
+ transport = Transport::Session.new(host, options)
180
+ auth = Authentication::Session.new(transport, options)
181
+
182
+ user = options.fetch(:user, user)
183
+ if auth.authenticate("ssh-connection", user, options[:password])
184
+ connection = Connection::Session.new(transport, options)
185
+ if block_given?
186
+ yield connection
187
+ connection.close
188
+ else
189
+ return connection
190
+ end
191
+ else
192
+ raise AuthenticationFailed, user
193
+ end
194
+ end
195
+
196
+ # Returns a hash of the configuration options for the given host, as read
197
+ # from the SSH configuration file(s). If +use_ssh_config+ is true (the
198
+ # default), this will load configuration from both ~/.ssh/config and
199
+ # /etc/ssh_config. If +use_ssh_config+ is nil or false, nothing will be
200
+ # loaded (and an empty hash returned). Otherwise, +use_ssh_config+ may
201
+ # be a file name (or array of file names) of SSH configuration file(s)
202
+ # to read.
203
+ #
204
+ # See Net::SSH::Config for the full description of all supported options.
205
+ def self.configuration_for(host, use_ssh_config=true)
206
+ files = case use_ssh_config
207
+ when true then Net::SSH::Config.default_files
208
+ when false, nil then return {}
209
+ else Array(use_ssh_config)
210
+ end
211
+
212
+ Net::SSH::Config.for(host, files)
213
+ end
214
+ end
215
+ end
@@ -0,0 +1,176 @@
1
+ require 'net/ssh/buffer'
2
+ require 'net/ssh/errors'
3
+ require 'net/ssh/loggable'
4
+ require 'net/ssh/transport/server_version'
5
+
6
+ require 'net/ssh/authentication/pageant' if File::ALT_SEPARATOR && !(RUBY_PLATFORM =~ /java/)
7
+
8
+ module Net; module SSH; module Authentication
9
+
10
+ # A trivial exception class for representing agent-specific errors.
11
+ class AgentError < Net::SSH::Exception; end
12
+
13
+ # An exception for indicating that the SSH agent is not available.
14
+ class AgentNotAvailable < AgentError; end
15
+
16
+ # This class implements a simple client for the ssh-agent protocol. It
17
+ # does not implement any specific protocol, but instead copies the
18
+ # behavior of the ssh-agent functions in the OpenSSH library (3.8).
19
+ #
20
+ # This means that although it behaves like a SSH1 client, it also has
21
+ # some SSH2 functionality (like signing data).
22
+ class Agent
23
+ include Loggable
24
+
25
+ # A simple module for extending keys, to allow comments to be specified
26
+ # for them.
27
+ module Comment
28
+ attr_accessor :comment
29
+ end
30
+
31
+ SSH2_AGENT_REQUEST_VERSION = 1
32
+ SSH2_AGENT_REQUEST_IDENTITIES = 11
33
+ SSH2_AGENT_IDENTITIES_ANSWER = 12
34
+ SSH2_AGENT_SIGN_REQUEST = 13
35
+ SSH2_AGENT_SIGN_RESPONSE = 14
36
+ SSH2_AGENT_FAILURE = 30
37
+ SSH2_AGENT_VERSION_RESPONSE = 103
38
+
39
+ SSH_COM_AGENT2_FAILURE = 102
40
+
41
+ SSH_AGENT_REQUEST_RSA_IDENTITIES = 1
42
+ SSH_AGENT_RSA_IDENTITIES_ANSWER1 = 2
43
+ SSH_AGENT_RSA_IDENTITIES_ANSWER2 = 5
44
+ SSH_AGENT_FAILURE = 5
45
+
46
+ # The underlying socket being used to communicate with the SSH agent.
47
+ attr_reader :socket
48
+
49
+ # Instantiates a new agent object, connects to a running SSH agent,
50
+ # negotiates the agent protocol version, and returns the agent object.
51
+ def self.connect(logger=nil)
52
+ agent = new(logger)
53
+ agent.connect!
54
+ agent.negotiate!
55
+ agent
56
+ end
57
+
58
+ # Creates a new Agent object, using the optional logger instance to
59
+ # report status.
60
+ def initialize(logger=nil)
61
+ self.logger = logger
62
+ end
63
+
64
+ # Connect to the agent process using the socket factory and socket name
65
+ # given by the attribute writers. If the agent on the other end of the
66
+ # socket reports that it is an SSH2-compatible agent, this will fail
67
+ # (it only supports the ssh-agent distributed by OpenSSH).
68
+ def connect!
69
+ begin
70
+ debug { "connecting to ssh-agent" }
71
+ @socket = agent_socket_factory.open(ENV['SSH_AUTH_SOCK'])
72
+ rescue
73
+ error { "could not connect to ssh-agent" }
74
+ raise AgentNotAvailable, $!.message
75
+ end
76
+ end
77
+
78
+ # Attempts to negotiate the SSH agent protocol version. Raises an error
79
+ # if the version could not be negotiated successfully.
80
+ def negotiate!
81
+ # determine what type of agent we're communicating with
82
+ type, body = send_and_wait(SSH2_AGENT_REQUEST_VERSION, :string, Transport::ServerVersion::PROTO_VERSION)
83
+
84
+ if type == SSH2_AGENT_VERSION_RESPONSE
85
+ raise NotImplementedError, "SSH2 agents are not yet supported"
86
+ elsif type != SSH_AGENT_RSA_IDENTITIES_ANSWER1 && type != SSH_AGENT_RSA_IDENTITIES_ANSWER2
87
+ raise AgentError, "unknown response from agent: #{type}, #{body.to_s.inspect}"
88
+ end
89
+ end
90
+
91
+ # Return an array of all identities (public keys) known to the agent.
92
+ # Each key returned is augmented with a +comment+ property which is set
93
+ # to the comment returned by the agent for that key.
94
+ def identities
95
+ type, body = send_and_wait(SSH2_AGENT_REQUEST_IDENTITIES)
96
+ raise AgentError, "could not get identity count" if agent_failed(type)
97
+ raise AgentError, "bad authentication reply: #{type}" if type != SSH2_AGENT_IDENTITIES_ANSWER
98
+
99
+ identities = []
100
+ body.read_long.times do
101
+ key = Buffer.new(body.read_string).read_key
102
+ key.extend(Comment)
103
+ key.comment = body.read_string
104
+ identities.push key
105
+ end
106
+
107
+ return identities
108
+ end
109
+
110
+ # Closes this socket. This agent reference is no longer able to
111
+ # query the agent.
112
+ def close
113
+ @socket.close
114
+ end
115
+
116
+ # Using the agent and the given public key, sign the given data. The
117
+ # signature is returned in SSH2 format.
118
+ def sign(key, data)
119
+ type, reply = send_and_wait(SSH2_AGENT_SIGN_REQUEST, :string, Buffer.from(:key, key), :string, data, :long, 0)
120
+
121
+ if agent_failed(type)
122
+ raise AgentError, "agent could not sign data with requested identity"
123
+ elsif type != SSH2_AGENT_SIGN_RESPONSE
124
+ raise AgentError, "bad authentication response #{type}"
125
+ end
126
+
127
+ return reply.read_string
128
+ end
129
+
130
+ private
131
+
132
+ # Returns the agent socket factory to use.
133
+ def agent_socket_factory
134
+ if File::ALT_SEPARATOR
135
+ Pageant::Socket
136
+ else
137
+ UNIXSocket
138
+ end
139
+ end
140
+
141
+ # Send a new packet of the given type, with the associated data.
142
+ def send_packet(type, *args)
143
+ buffer = Buffer.from(*args)
144
+ data = [buffer.length + 1, type.to_i, buffer.to_s].pack("NCA*")
145
+ debug { "sending agent request #{type} len #{buffer.length}" }
146
+ @socket.send data, 0
147
+ end
148
+
149
+ # Read the next packet from the agent. This will return a two-part
150
+ # tuple consisting of the packet type, and the packet's body (which
151
+ # is returned as a Net::SSH::Buffer).
152
+ def read_packet
153
+ buffer = Net::SSH::Buffer.new(@socket.read(4))
154
+ buffer.append(@socket.read(buffer.read_long))
155
+ type = buffer.read_byte
156
+ debug { "received agent packet #{type} len #{buffer.length-4}" }
157
+ return type, buffer
158
+ end
159
+
160
+ # Send the given packet and return the subsequent reply from the agent.
161
+ # (See #send_packet and #read_packet).
162
+ def send_and_wait(type, *args)
163
+ send_packet(type, *args)
164
+ read_packet
165
+ end
166
+
167
+ # Returns +true+ if the parameter indicates a "failure" response from
168
+ # the agent, and +false+ otherwise.
169
+ def agent_failed(type)
170
+ type == SSH_AGENT_FAILURE ||
171
+ type == SSH2_AGENT_FAILURE ||
172
+ type == SSH_COM_AGENT2_FAILURE
173
+ end
174
+ end
175
+
176
+ end; end; end
@@ -0,0 +1,18 @@
1
+ module Net; module SSH; module Authentication
2
+
3
+ # Describes the constants used by the Net::SSH::Authentication components
4
+ # of the Net::SSH library. Individual authentication method implemenations
5
+ # may define yet more constants that are specific to their implementation.
6
+ module Constants
7
+ USERAUTH_REQUEST = 50
8
+ USERAUTH_FAILURE = 51
9
+ USERAUTH_SUCCESS = 52
10
+ USERAUTH_BANNER = 53
11
+
12
+ USERAUTH_PASSWD_CHANGEREQ = 60
13
+ USERAUTH_PK_OK = 60
14
+
15
+ USERAUTH_METHOD_RANGE = 60..79
16
+ end
17
+
18
+ end; end; end
@@ -0,0 +1,193 @@
1
+ require 'net/ssh/errors'
2
+ require 'net/ssh/key_factory'
3
+ require 'net/ssh/loggable'
4
+ require 'net/ssh/authentication/agent'
5
+
6
+ module Net
7
+ module SSH
8
+ module Authentication
9
+
10
+ # A trivial exception class used to report errors in the key manager.
11
+ class KeyManagerError < Net::SSH::Exception; end
12
+
13
+ # This class encapsulates all operations done by clients on a user's
14
+ # private keys. In practice, the client should never need a reference
15
+ # to a private key; instead, they grab a list of "identities" (public
16
+ # keys) that are available from the KeyManager, and then use
17
+ # the KeyManager to do various private key operations using those
18
+ # identities.
19
+ #
20
+ # The KeyManager also uses the Agent class to encapsulate the
21
+ # ssh-agent. Thus, from a client's perspective it is completely
22
+ # hidden whether an identity comes from the ssh-agent or from a file
23
+ # on disk.
24
+ class KeyManager
25
+ include Loggable
26
+
27
+ # The list of user key files that will be examined
28
+ attr_reader :key_files
29
+
30
+ # The list of user key data that will be examined
31
+ attr_reader :key_data
32
+
33
+ # The map of loaded identities
34
+ attr_reader :known_identities
35
+
36
+ # The map of options that were passed to the key-manager
37
+ attr_reader :options
38
+
39
+ # Create a new KeyManager. By default, the manager will
40
+ # use the ssh-agent (if it is running).
41
+ def initialize(logger, options={})
42
+ self.logger = logger
43
+ @key_files = []
44
+ @key_data = []
45
+ @use_agent = true
46
+ @known_identities = {}
47
+ @agent = nil
48
+ @options = options
49
+ end
50
+
51
+ # Clear all knowledge of any loaded user keys. This also clears the list
52
+ # of default identity files that are to be loaded, thus making it
53
+ # appropriate to use if a client wishes to NOT use the default identity
54
+ # files.
55
+ def clear!
56
+ key_files.clear
57
+ key_data.clear
58
+ known_identities.clear
59
+ self
60
+ end
61
+
62
+ # Add the given key_file to the list of key files that will be used.
63
+ def add(key_file)
64
+ key_files.push(File.expand_path(key_file)).uniq!
65
+ self
66
+ end
67
+
68
+ # Add the given key_file to the list of keys that will be used.
69
+ def add_key_data(key_data_)
70
+ key_data.push(key_data_).uniq!
71
+ self
72
+ end
73
+
74
+ # This is used as a hint to the KeyManager indicating that the agent
75
+ # connection is no longer needed. Any other open resources may be closed
76
+ # at this time.
77
+ #
78
+ # Calling this does NOT indicate that the KeyManager will no longer
79
+ # be used. Identities may still be requested and operations done on
80
+ # loaded identities, in which case, the agent will be automatically
81
+ # reconnected. This method simply allows the client connection to be
82
+ # closed when it will not be used in the immediate future.
83
+ def finish
84
+ @agent.close if @agent
85
+ @agent = nil
86
+ end
87
+
88
+ # Iterates over all available identities (public keys) known to this
89
+ # manager. As it finds one, it will then yield it to the caller.
90
+ # The origin of the identities may be from files on disk or from an
91
+ # ssh-agent. Note that identities from an ssh-agent are always listed
92
+ # first in the array, with other identities coming after.
93
+ def each_identity
94
+ if agent
95
+ agent.identities.each do |key|
96
+ known_identities[key] = { :from => :agent }
97
+ yield key
98
+ end
99
+ end
100
+
101
+ key_files.each do |file|
102
+ public_key_file = file + ".pub"
103
+ if File.readable?(public_key_file)
104
+ begin
105
+ key = KeyFactory.load_public_key(public_key_file)
106
+ known_identities[key] = { :from => :file, :file => file }
107
+ yield key
108
+ rescue Exception => e
109
+ error { "could not load public key file `#{public_key_file}': #{e.class} (#{e.message})" }
110
+ end
111
+ elsif File.readable?(file)
112
+ begin
113
+ private_key = KeyFactory.load_private_key(file, options[:passphrase])
114
+ key = private_key.send(:public_key)
115
+ known_identities[key] = { :from => :file, :file => file, :key => private_key }
116
+ yield key
117
+ rescue Exception => e
118
+ error { "could not load private key file `#{file}': #{e.class} (#{e.message})" }
119
+ end
120
+ end
121
+ end
122
+
123
+ key_data.each do |data|
124
+ private_key = KeyFactory.load_data_private_key(data)
125
+ key = private_key.send(:public_key)
126
+ known_identities[key] = { :from => :key_data, :data => data, :key => private_key }
127
+ yield key
128
+ end
129
+
130
+ self
131
+ end
132
+
133
+ # Sign the given data, using the corresponding private key of the given
134
+ # identity. If the identity was originally obtained from an ssh-agent,
135
+ # then the ssh-agent will be used to sign the data, otherwise the
136
+ # private key for the identity will be loaded from disk (if it hasn't
137
+ # been loaded already) and will then be used to sign the data.
138
+ #
139
+ # Regardless of the identity's origin or who does the signing, this
140
+ # will always return the signature in an SSH2-specified "signature
141
+ # blob" format.
142
+ def sign(identity, data)
143
+ info = known_identities[identity] or raise KeyManagerError, "the given identity is unknown to the key manager"
144
+
145
+ if info[:key].nil? && info[:from] == :file
146
+ begin
147
+ info[:key] = KeyFactory.load_private_key(info[:file], options[:passphrase])
148
+ rescue Exception => e
149
+ raise KeyManagerError, "the given identity is known, but the private key could not be loaded: #{e.class} (#{e.message})"
150
+ end
151
+ end
152
+
153
+ if info[:key]
154
+ return Net::SSH::Buffer.from(:string, identity.ssh_type,
155
+ :string, info[:key].ssh_do_sign(data.to_s)).to_s
156
+ end
157
+
158
+ if info[:from] == :agent
159
+ raise KeyManagerError, "the agent is no longer available" unless agent
160
+ return agent.sign(identity, data.to_s)
161
+ end
162
+
163
+ raise KeyManagerError, "[BUG] can't determine identity origin (#{info.inspect})"
164
+ end
165
+
166
+ # Identifies whether the ssh-agent will be used or not.
167
+ def use_agent?
168
+ @use_agent
169
+ end
170
+
171
+ # Toggles whether the ssh-agent will be used or not. If true, an
172
+ # attempt will be made to use the ssh-agent. If false, any existing
173
+ # connection to an agent is closed and the agent will not be used.
174
+ def use_agent=(use_agent)
175
+ finish if !use_agent
176
+ @use_agent = use_agent
177
+ end
178
+
179
+ # Returns an Agent instance to use for communicating with an SSH
180
+ # agent process. Returns nil if use of an SSH agent has been disabled,
181
+ # or if the agent is otherwise not available.
182
+ def agent
183
+ return unless use_agent?
184
+ @agent ||= Agent.connect(logger)
185
+ rescue AgentNotAvailable
186
+ @use_agent = false
187
+ nil
188
+ end
189
+ end
190
+
191
+ end
192
+ end
193
+ end