poolparty 1.3.15 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.rdoc +2 -87
- data/Rakefile +85 -45
- data/VERSION.yml +2 -2
- data/bin/cloud +6 -10
- data/bin/cloud-bootstrap +2 -4
- data/bin/cloud-compile +1 -7
- data/bin/cloud-configure +1 -9
- data/bin/cloud-console +3 -6
- data/bin/cloud-contract +3 -7
- data/bin/cloud-list +4 -3
- data/bin/cloud-reboot +25 -0
- data/bin/cloud-show +13 -5
- data/bin/cloud-start +1 -26
- data/bin/cloud-terminate +3 -3
- data/examples/README.md +57 -0
- data/examples/chef_cloud/chef-repo/README +3 -0
- data/examples/chef_cloud/chef-repo/Rakefile +35 -0
- data/examples/chef_cloud/chef-repo/certificates/README +1 -0
- data/examples/chef_cloud/chef-repo/config/client.rb.example +22 -0
- data/examples/chef_cloud/chef-repo/config/rake.rb +60 -0
- data/examples/chef_cloud/chef-repo/config/server.rb.example +33 -0
- data/examples/chef_cloud/chef-repo/config/solo.rb.example +9 -0
- data/examples/chef_cloud/chef-repo/cookbooks/README +1 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/README.rdoc +68 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/attributes/apache.rb +74 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/definitions/apache_conf.rb +25 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/definitions/apache_module.rb +43 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/definitions/apache_site.rb +40 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/definitions/web_app.rb +49 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/files/default/apache2_module_conf_generate.pl +41 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/metadata.json +508 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/metadata.rb +191 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/default.rb +191 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/god_monitor.rb +33 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_alias.rb +22 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_auth_basic.rb +20 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_auth_digest.rb +20 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_authn_file.rb +20 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_authnz_ldap.rb +20 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_authz_default.rb +20 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_authz_groupfile.rb +20 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_authz_host.rb +20 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_authz_user.rb +20 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_autoindex.rb +22 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_cgi.rb +20 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_dav.rb +20 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_dav_svn.rb +22 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_deflate.rb +22 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_dir.rb +22 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_env.rb +20 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_expires.rb +20 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_fcgid.rb +46 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_headers.rb +20 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_ldap.rb +20 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_log_config.rb +24 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_mime.rb +22 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_negotiation.rb +22 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_php5.rb +32 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_proxy.rb +22 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_proxy_ajp.rb +20 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_proxy_balancer.rb +20 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_proxy_connect.rb +20 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_proxy_http.rb +20 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_python.rb +22 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_rails.rb +43 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_rewrite.rb +20 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_setenvif.rb +22 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_ssl.rb +42 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/recipes/mod_status.rb +22 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/templates/default/a2enmod.erb +37 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/templates/default/apache2.conf.erb +230 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/templates/default/apache2.god.erb +19 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/templates/default/charset.erb +6 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/templates/default/default-site.erb +57 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/templates/default/mods/README +2 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/templates/default/mods/alias.conf.erb +24 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/templates/default/mods/autoindex.conf.erb +101 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/templates/default/mods/deflate.conf.erb +3 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/templates/default/mods/dir.conf.erb +5 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/templates/default/mods/fcgid.conf.erb +10 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/templates/default/mods/mime.conf.erb +191 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/templates/default/mods/negotiation.conf.erb +18 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/templates/default/mods/proxy.conf.erb +19 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/templates/default/mods/setenvif.conf.erb +28 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/templates/default/mods/ssl.conf.erb +72 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/templates/default/mods/status.conf.erb +16 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apache2/templates/default/security.erb +50 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apt/files/default/apt-cacher +9 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apt/files/default/apt-cacher.conf +144 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apt/files/default/apt-proxy-v2.conf +50 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apt/metadata.json +51 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apt/metadata.rb +11 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apt/recipes/cacher.rb +42 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apt/recipes/default.rb +31 -0
- data/examples/chef_cloud/chef-repo/cookbooks/apt/recipes/proxy.rb +34 -0
- data/examples/chef_cloud/chef-repo/cookbooks/bootstrap/README.rdoc +165 -0
- data/examples/chef_cloud/chef-repo/cookbooks/bootstrap/attributes/bootstrap.rb +49 -0
- data/examples/chef_cloud/chef-repo/cookbooks/bootstrap/metadata.json +57 -0
- data/examples/chef_cloud/chef-repo/cookbooks/bootstrap/metadata.rb +10 -0
- data/examples/chef_cloud/chef-repo/cookbooks/bootstrap/recipes/client.rb +94 -0
- data/examples/chef_cloud/chef-repo/cookbooks/bootstrap/recipes/default.rb +18 -0
- data/examples/chef_cloud/chef-repo/cookbooks/bootstrap/recipes/server.rb +120 -0
- data/examples/chef_cloud/chef-repo/cookbooks/bootstrap/templates/default/client.rb.erb +30 -0
- data/examples/chef_cloud/chef-repo/cookbooks/bootstrap/templates/default/server.rb.erb +32 -0
- data/examples/chef_cloud/chef-repo/cookbooks/bootstrap/templates/default/sv-chef-client-log-run.erb +2 -0
- data/examples/chef_cloud/chef-repo/cookbooks/bootstrap/templates/default/sv-chef-client-run.erb +4 -0
- data/examples/chef_cloud/chef-repo/cookbooks/bootstrap/templates/default/sv-chef-indexer-log-run.erb +2 -0
- data/examples/chef_cloud/chef-repo/cookbooks/bootstrap/templates/default/sv-chef-indexer-run.erb +4 -0
- data/examples/chef_cloud/chef-repo/cookbooks/bootstrap/templates/default/sv-chef-server-log-run.erb +2 -0
- data/examples/chef_cloud/chef-repo/cookbooks/bootstrap/templates/default/sv-chef-server-run.erb +4 -0
- data/examples/chef_cloud/chef-repo/cookbooks/chef/README.rdoc +221 -0
- data/examples/chef_cloud/chef-repo/cookbooks/chef/attributes/chef.rb +60 -0
- data/examples/chef_cloud/chef-repo/cookbooks/chef/metadata.json +231 -0
- data/examples/chef_cloud/chef-repo/cookbooks/chef/metadata.rb +87 -0
- data/examples/chef_cloud/chef-repo/cookbooks/chef/recipes/client.rb +76 -0
- data/examples/chef_cloud/chef-repo/cookbooks/chef/recipes/server.rb +75 -0
- data/examples/chef_cloud/chef-repo/cookbooks/chef/recipes/server_proxy.rb +59 -0
- data/examples/chef_cloud/chef-repo/cookbooks/chef/templates/default/chef_server.conf.erb +49 -0
- data/examples/chef_cloud/chef-repo/cookbooks/chef/templates/default/client.rb.erb +30 -0
- data/examples/chef_cloud/chef-repo/cookbooks/chef/templates/default/server.rb.erb +32 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ec2/attributes/ec2_metadata.rb +44 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ec2/attributes/ec2_recipe_options.rb +30 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ec2/metadata.rb +9 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ec2/recipes/default.rb +19 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ganglia/README.rdoc +8 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ganglia/attributes/default.rb +14 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ganglia/metadata.rb +12 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ganglia/recipes/default.rb +141 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ganglia/recipes/gmetad.rb +44 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ganglia/recipes/monitor_sshd.rb +14 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ganglia/recipes/monitor_watson.rb +14 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ganglia/recipes/web.rb +17 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ganglia/templates/default/bin/gmetad.erb +38 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ganglia/templates/default/bin/gmond.erb +38 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ganglia/templates/default/bin/monitors/sshd_ganglia.sh.erb +13 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ganglia/templates/default/bin/monitors/watson_channels.sh.erb +13 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ganglia/templates/default/ganglia-web-conf.php.erb +191 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ganglia/templates/default/gmetad.conf.erb +117 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ganglia/templates/default/gmond.conf.erb +426 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ganglia/templates/default/jaunty.sources.list.erb +6 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ntp/attributes/ntp.rb +11 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ntp/metadata.json +97 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ntp/metadata.rb +31 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ntp/recipes/default.rb +41 -0
- data/examples/chef_cloud/chef-repo/cookbooks/ntp/templates/default/ntp.conf.erb +21 -0
- data/examples/chef_cloud/chef-repo/cookbooks/rsyslog/README.rdoc +55 -0
- data/examples/chef_cloud/chef-repo/cookbooks/rsyslog/attributes/rsyslog.rb +24 -0
- data/examples/chef_cloud/chef-repo/cookbooks/rsyslog/files/default/rsyslog.default +9 -0
- data/examples/chef_cloud/chef-repo/cookbooks/rsyslog/files/ubuntu-8.04/rsyslog.default +13 -0
- data/examples/chef_cloud/chef-repo/cookbooks/rsyslog/files/ubuntu-9.10/rsyslog.default +9 -0
- data/examples/chef_cloud/chef-repo/cookbooks/rsyslog/metadata.json +88 -0
- data/examples/chef_cloud/chef-repo/cookbooks/rsyslog/metadata.rb +29 -0
- data/examples/chef_cloud/chef-repo/cookbooks/rsyslog/recipes/client.rb +40 -0
- data/examples/chef_cloud/chef-repo/cookbooks/rsyslog/recipes/default.rb +61 -0
- data/examples/chef_cloud/chef-repo/cookbooks/rsyslog/recipes/server.rb +48 -0
- data/examples/chef_cloud/chef-repo/cookbooks/rsyslog/templates/default/remote.conf.erb +6 -0
- data/examples/chef_cloud/chef-repo/cookbooks/rsyslog/templates/default/rsyslog.conf.erb +121 -0
- data/examples/chef_cloud/chef-repo/cookbooks/rsyslog/templates/default/server.conf.erb +58 -0
- data/examples/chef_cloud/chef-repo/cookbooks/rsyslog/templates/ubuntu-9.10/50-default.conf.erb +69 -0
- data/examples/chef_cloud/chef-repo/cookbooks/rsyslog/templates/ubuntu-9.10/remote.conf.erb +6 -0
- data/examples/chef_cloud/chef-repo/cookbooks/rsyslog/templates/ubuntu-9.10/server.conf.erb +58 -0
- data/examples/chef_cloud/chef-repo/cookbooks/runit/attributes/sv_bin.rb +27 -0
- data/examples/chef_cloud/chef-repo/cookbooks/runit/definitions/runit_service.rb +75 -0
- data/examples/chef_cloud/chef-repo/cookbooks/runit/files/ubuntu-6.10/runsvdir +6 -0
- data/examples/chef_cloud/chef-repo/cookbooks/runit/files/ubuntu-7.04/runsvdir +7 -0
- data/examples/chef_cloud/chef-repo/cookbooks/runit/files/ubuntu-7.10/runsvdir +7 -0
- data/examples/chef_cloud/chef-repo/cookbooks/runit/files/ubuntu-8.04/runsvdir +7 -0
- data/examples/chef_cloud/chef-repo/cookbooks/runit/metadata.json +85 -0
- data/examples/chef_cloud/chef-repo/cookbooks/runit/metadata.rb +30 -0
- data/examples/chef_cloud/chef-repo/cookbooks/runit/recipes/default.rb +46 -0
- data/examples/chef_cloud/chef-repo/roles/README +1 -0
- data/examples/chef_cloud/chef-repo/roles/chef-upgrade.rb +14 -0
- data/examples/chef_cloud/chef-repo/site-cookbooks/README +1 -0
- data/examples/chef_cloud/chef-repo/site-cookbooks/collectd/README.rdoc +9 -0
- data/examples/chef_cloud/chef-repo/site-cookbooks/collectd/attributes/collectd.rb +3 -0
- data/examples/chef_cloud/chef-repo/site-cookbooks/collectd/files/ubuntu/collectd.default +17 -0
- data/examples/chef_cloud/chef-repo/site-cookbooks/collectd/metadata.rb +6 -0
- data/examples/chef_cloud/chef-repo/site-cookbooks/collectd/recipes/default.rb +62 -0
- data/examples/chef_cloud/chef-repo/site-cookbooks/collectd/templates/default/collectd.conf.erb +107 -0
- data/examples/chef_cloud/chef-repo/site-cookbooks/collectd/templates/default/collection.conf.erb +2 -0
- data/examples/chef_cloud/chef-repo/site-cookbooks/collectd/templates/default/collection3.conf.erb +4 -0
- data/examples/chef_cloud/chef-repo/site-cookbooks/hosts/attributes/hosts.rb +1 -0
- data/examples/chef_cloud/chef-repo/site-cookbooks/hosts/metadata.rb +4 -0
- data/examples/chef_cloud/chef-repo/site-cookbooks/hosts/recipes/default.rb +3 -0
- data/examples/chef_cloud/chef-repo/site-cookbooks/hosts/templates/default/hosts.erb +18 -0
- data/examples/chef_cloud/chef-repo/site-cookbooks/sysadmin/recipes/default.rb +22 -0
- data/examples/chef_cloud/chef-repo/site-cookbooks/ubuntu/metadata.json +42 -0
- data/examples/chef_cloud/chef-repo/site-cookbooks/ubuntu/metadata.rb +7 -0
- data/examples/chef_cloud/chef-repo/site-cookbooks/ubuntu/recipes/default.rb +31 -0
- data/examples/chef_cloud/chef-repo/site-cookbooks/ubuntu/templates/default/sources.list.erb +16 -0
- data/examples/chef_cloud/sample +2 -0
- data/examples/chef_cloud.rb +24 -0
- data/examples/ec2_infrastructure_only.rb +80 -0
- data/examples/simple.rb +22 -10
- data/lib/cloud_providers/cloud_provider.rb +43 -63
- data/lib/cloud_providers/connections.rb +29 -11
- data/lib/cloud_providers/default/base.rb +4 -0
- data/lib/cloud_providers/ec2/ec2.rb +258 -143
- data/lib/cloud_providers/ec2/ec2_instance.rb +87 -82
- data/lib/cloud_providers/ec2/helpers/authorize.rb +33 -0
- data/lib/cloud_providers/ec2/helpers/ec2_helper.rb +30 -0
- data/lib/cloud_providers/ec2/helpers/elastic_auto_scaler.rb +300 -0
- data/lib/cloud_providers/ec2/helpers/elastic_block_store.rb +9 -0
- data/lib/cloud_providers/ec2/helpers/elastic_ip.rb +33 -0
- data/lib/cloud_providers/ec2/helpers/elastic_load_balancer.rb +200 -0
- data/lib/cloud_providers/ec2/helpers/revoke.rb +24 -0
- data/lib/cloud_providers/ec2/helpers/security_group.rb +98 -0
- data/lib/cloud_providers/remote_instance.rb +139 -0
- data/lib/cloud_providers.rb +4 -4
- data/lib/core/array.rb +0 -37
- data/lib/core/hash.rb +11 -37
- data/lib/core/object.rb +5 -86
- data/lib/core/string.rb +1 -103
- data/lib/keypair.rb +22 -11
- data/lib/poolparty/base.rb +15 -216
- data/lib/poolparty/chef_attribute.rb +36 -0
- data/lib/poolparty/cloud.rb +222 -260
- data/lib/poolparty/pool.rb +18 -171
- data/lib/poolparty.rb +6 -25
- data/test/fixtures/clouds/simple_cloud.rb +4 -6
- data/test/fixtures/ec2/ec2-describe-instances_response_body.xml +2 -2
- data/test/fixtures/ec2/elb-describe-load-balancers.xml +75 -0
- data/test/fixtures/resources/fake_plugin.rb +5 -0
- data/test/lib/core/array_test.rb +1 -34
- data/test/lib/core/hash_test.rb +12 -20
- data/test/lib/core/object_test.rb +6 -34
- data/test/lib/core/string_test.rb +2 -35
- data/test/lib/core/symbol_test.rb +0 -4
- data/test/lib/poolparty/cloud_test.rb +14 -133
- data/test/lib/poolparty/keypair_test.rb +1 -3
- data/test/lib/poolparty/pool_test.rb +5 -19
- data/test/test_methods.rb +6 -11
- data/vendor/gems/amazon-ec2/ChangeLog +289 -0
- data/vendor/gems/amazon-ec2/LICENSE +66 -0
- data/vendor/gems/amazon-ec2/README.rdoc +356 -0
- data/vendor/gems/amazon-ec2/README_dev.rdoc +12 -0
- data/vendor/gems/amazon-ec2/Rakefile +101 -0
- data/vendor/gems/amazon-ec2/VERSION +1 -0
- data/vendor/gems/amazon-ec2/amazon-ec2.gemspec +134 -0
- data/vendor/gems/amazon-ec2/bin/ec2-gem-example.rb +137 -0
- data/vendor/gems/amazon-ec2/bin/ec2-gem-profile.rb +10 -0
- data/vendor/gems/amazon-ec2/bin/ec2sh +62 -0
- data/vendor/gems/amazon-ec2/bin/setup.rb +28 -0
- data/vendor/gems/amazon-ec2/deps.rip +1 -0
- data/vendor/gems/amazon-ec2/lib/AWS/Autoscaling/autoscaling.rb +283 -0
- data/vendor/gems/amazon-ec2/lib/AWS/Autoscaling.rb +70 -0
- data/vendor/gems/amazon-ec2/lib/AWS/Cloudwatch/monitoring.rb +80 -0
- data/vendor/gems/amazon-ec2/lib/AWS/Cloudwatch.rb +32 -0
- data/vendor/gems/amazon-ec2/lib/AWS/EC2/availability_zones.rb +21 -0
- data/vendor/gems/amazon-ec2/lib/AWS/EC2/console.rb +23 -0
- data/vendor/gems/amazon-ec2/lib/AWS/EC2/elastic_ips.rb +81 -0
- data/vendor/gems/amazon-ec2/lib/AWS/EC2/image_attributes.rb +133 -0
- data/vendor/gems/amazon-ec2/lib/AWS/EC2/images.rb +101 -0
- data/vendor/gems/amazon-ec2/lib/AWS/EC2/instances.rb +212 -0
- data/vendor/gems/amazon-ec2/lib/AWS/EC2/keypairs.rb +61 -0
- data/vendor/gems/amazon-ec2/lib/AWS/EC2/products.rb +21 -0
- data/vendor/gems/amazon-ec2/lib/AWS/EC2/security_groups.rb +183 -0
- data/vendor/gems/amazon-ec2/lib/AWS/EC2/snapshots.rb +59 -0
- data/vendor/gems/amazon-ec2/lib/AWS/EC2/volumes.rb +115 -0
- data/vendor/gems/amazon-ec2/lib/AWS/EC2.rb +33 -0
- data/vendor/gems/amazon-ec2/lib/AWS/ELB/load_balancers.rb +205 -0
- data/vendor/gems/amazon-ec2/lib/AWS/ELB.rb +71 -0
- data/vendor/gems/amazon-ec2/lib/AWS/exceptions.rb +122 -0
- data/vendor/gems/amazon-ec2/lib/AWS/responses.rb +21 -0
- data/vendor/gems/amazon-ec2/lib/AWS.rb +294 -0
- data/vendor/gems/amazon-ec2/perftools/ec2prof +0 -0
- data/vendor/gems/amazon-ec2/perftools/ec2prof-results.dot +193 -0
- data/vendor/gems/amazon-ec2/perftools/ec2prof-results.txt +126 -0
- data/vendor/gems/amazon-ec2/perftools/ec2prof.symbols +129 -0
- data/vendor/gems/amazon-ec2/test/test_Autoscaling_groups.rb +336 -0
- data/vendor/gems/amazon-ec2/test/test_EC2.rb +68 -0
- data/vendor/gems/amazon-ec2/test/test_EC2_availability_zones.rb +49 -0
- data/vendor/gems/amazon-ec2/test/test_EC2_console.rb +54 -0
- data/vendor/gems/amazon-ec2/test/test_EC2_elastic_ips.rb +144 -0
- data/vendor/gems/amazon-ec2/test/test_EC2_image_attributes.rb +238 -0
- data/vendor/gems/amazon-ec2/test/test_EC2_images.rb +197 -0
- data/vendor/gems/amazon-ec2/test/test_EC2_instances.rb +429 -0
- data/vendor/gems/amazon-ec2/test/test_EC2_keypairs.rb +123 -0
- data/vendor/gems/amazon-ec2/test/test_EC2_products.rb +48 -0
- data/vendor/gems/amazon-ec2/test/test_EC2_responses.rb +53 -0
- data/vendor/gems/amazon-ec2/test/test_EC2_s3_xmlsimple.rb +80 -0
- data/vendor/gems/amazon-ec2/test/test_EC2_security_groups.rb +205 -0
- data/vendor/gems/amazon-ec2/test/test_EC2_snapshots.rb +83 -0
- data/vendor/gems/amazon-ec2/test/test_EC2_volumes.rb +142 -0
- data/vendor/gems/amazon-ec2/test/test_ELB_load_balancers.rb +239 -0
- data/vendor/gems/amazon-ec2/test/test_helper.rb +23 -0
- data/vendor/gems/amazon-ec2/wsdl/2007-08-29.ec2.wsdl +1269 -0
- data/vendor/gems/amazon-ec2/wsdl/2008-02-01.ec2.wsdl +1614 -0
- data/vendor/gems/amazon-ec2/wsdl/2008-05-05.ec2.wsdl +2052 -0
- data/vendor/gems/amazon-ec2/wsdl/2008-12-01.ec2.wsdl +2354 -0
- data/vendor/gems/searchable_paths/README.rdoc +18 -0
- data/vendor/gems/searchable_paths/Rakefile +56 -0
- data/vendor/gems/searchable_paths/lib/searchable_paths.rb +81 -0
- data/vendor/gems/searchable_paths/test/searchable_paths_test.rb +74 -0
- data/vendor/gems/searchable_paths/test/test_helper.rb +16 -0
- metadata +269 -886
- data/bin/cloud-misc +0 -34
- data/bin/cloud-osxcopy +0 -26
- data/bin/cloud-setup +0 -36
- data/bin/cloud-thrift +0 -91
- data/bin/cloud-verify +0 -40
- data/examples/basic.rb +0 -30
- data/examples/custom_bootstrap.sh +0 -7
- data/examples/deploy.rb +0 -5
- data/examples/eucalyptus.rb +0 -63
- data/examples/eucalyptus_test_run.sh +0 -31
- data/examples/monitored_cloud.rb +0 -22
- data/examples/ssh_garden.rb +0 -21
- data/examples/thrift/erlang/Emakefile +0 -5
- data/examples/thrift/erlang/Makefile +0 -26
- data/examples/thrift/erlang/deps/thrift/COPYING +0 -24
- data/examples/thrift/erlang/deps/thrift/LICENSE +0 -24
- data/examples/thrift/erlang/deps/thrift/Makefile +0 -18
- data/examples/thrift/erlang/deps/thrift/README +0 -31
- data/examples/thrift/erlang/deps/thrift/build/beamver +0 -59
- data/examples/thrift/erlang/deps/thrift/build/buildtargets.mk +0 -14
- data/examples/thrift/erlang/deps/thrift/build/colors.mk +0 -24
- data/examples/thrift/erlang/deps/thrift/build/docs.mk +0 -12
- data/examples/thrift/erlang/deps/thrift/build/mime.types +0 -98
- data/examples/thrift/erlang/deps/thrift/build/otp.mk +0 -146
- data/examples/thrift/erlang/deps/thrift/build/otp_subdir.mk +0 -85
- data/examples/thrift/erlang/deps/thrift/build/raw_test.mk +0 -29
- data/examples/thrift/erlang/deps/thrift/ebin/thrift.app +0 -44
- data/examples/thrift/erlang/deps/thrift/ebin/thrift.appup +0 -1
- data/examples/thrift/erlang/deps/thrift/include/thrift_constants.hrl +0 -40
- data/examples/thrift/erlang/deps/thrift/include/thrift_protocol.hrl +0 -12
- data/examples/thrift/erlang/deps/thrift/src/Makefile +0 -116
- data/examples/thrift/erlang/deps/thrift/src/test_handler.erl +0 -7
- data/examples/thrift/erlang/deps/thrift/src/test_service.erl +0 -10
- data/examples/thrift/erlang/deps/thrift/src/thrift.app.src +0 -44
- data/examples/thrift/erlang/deps/thrift/src/thrift.appup.src +0 -1
- data/examples/thrift/erlang/deps/thrift/src/thrift_app.erl +0 -55
- data/examples/thrift/erlang/deps/thrift/src/thrift_base64_transport.erl +0 -45
- data/examples/thrift/erlang/deps/thrift/src/thrift_binary_protocol.erl +0 -318
- data/examples/thrift/erlang/deps/thrift/src/thrift_buffered_transport.erl +0 -168
- data/examples/thrift/erlang/deps/thrift/src/thrift_client.erl +0 -328
- data/examples/thrift/erlang/deps/thrift/src/thrift_disk_log_transport.erl +0 -106
- data/examples/thrift/erlang/deps/thrift/src/thrift_file_transport.erl +0 -69
- data/examples/thrift/erlang/deps/thrift/src/thrift_framed_transport.erl +0 -196
- data/examples/thrift/erlang/deps/thrift/src/thrift_http_transport.erl +0 -169
- data/examples/thrift/erlang/deps/thrift/src/thrift_processor.erl +0 -174
- data/examples/thrift/erlang/deps/thrift/src/thrift_protocol.erl +0 -326
- data/examples/thrift/erlang/deps/thrift/src/thrift_server.erl +0 -171
- data/examples/thrift/erlang/deps/thrift/src/thrift_service.erl +0 -6
- data/examples/thrift/erlang/deps/thrift/src/thrift_socket_server.erl +0 -245
- data/examples/thrift/erlang/deps/thrift/src/thrift_socket_transport.erl +0 -100
- data/examples/thrift/erlang/deps/thrift/src/thrift_sup.erl +0 -53
- data/examples/thrift/erlang/deps/thrift/src/thrift_transport.erl +0 -38
- data/examples/thrift/erlang/deps/thrift/vsn.mk +0 -1
- data/examples/thrift/erlang/include/commandInterface_thrift.hrl +0 -5
- data/examples/thrift/erlang/include/poolparty_constants.hrl +0 -9
- data/examples/thrift/erlang/include/poolparty_types.hrl +0 -8
- data/examples/thrift/erlang/src/commandInterface_thrift.erl +0 -29
- data/examples/thrift/erlang/src/poolparty_types.erl +0 -30
- data/examples/thrift/erlang/src/thrift_example.erl +0 -32
- data/examples/thrift/thrift_example.py +0 -28
- data/examples/thrift/thrift_example.rb +0 -40
- data/examples/vmware.rb +0 -28
- data/lib/cloud_providers/cloud_provider_instance.rb +0 -288
- data/lib/cloud_providers/ec2/ec2_helpers.rb +0 -100
- data/lib/cloud_providers/ec2/ec2_response.rb +0 -79
- data/lib/cloud_providers/ssh/ssh.rb +0 -68
- data/lib/cloud_providers/ssh/ssh_instance.rb +0 -41
- data/lib/cloud_providers/vmware/vmware.rb +0 -130
- data/lib/cloud_providers/vmware/vmware_instance.rb +0 -56
- data/lib/core/file.rb +0 -12
- data/lib/core/integer.rb +0 -11
- data/lib/core/module.rb +0 -14
- data/lib/core/proc.rb +0 -55
- data/lib/core/time.rb +0 -62
- data/lib/dependency_resolver.rb +0 -11
- data/lib/dependency_resolvers/base.rb +0 -115
- data/lib/dependency_resolvers/chef/resources/chef_attributes_file.rb +0 -51
- data/lib/dependency_resolvers/chef/resources/chef_recipe.rb +0 -51
- data/lib/dependency_resolvers/chef/resources/http_request.rb +0 -39
- data/lib/dependency_resolvers/chef/resources/remote_directory.rb +0 -54
- data/lib/dependency_resolvers/chef/resources/remote_file.rb +0 -69
- data/lib/dependency_resolvers/chef/resources/route.rb +0 -52
- data/lib/dependency_resolvers/chef/resources/script.rb +0 -62
- data/lib/dependency_resolvers/chef.rb +0 -239
- data/lib/dependency_resolvers/proxy_object.rb +0 -98
- data/lib/mixins/askable.rb +0 -163
- data/lib/mixins/callbacks.rb +0 -56
- data/lib/mixins/delayed.rb +0 -65
- data/lib/mixins/pinger.rb +0 -31
- data/lib/mixins/printing.rb +0 -35
- data/lib/mixins/searchable_paths.rb +0 -87
- data/lib/poolparty/default.rb +0 -33
- data/lib/poolparty/dsl_base.rb +0 -36
- data/lib/poolparty/installer.rb +0 -111
- data/lib/poolparty/installers/ec2.rb +0 -88
- data/lib/poolparty/installers/vmware.rb +0 -161
- data/lib/poolparty/monitor.rb +0 -83
- data/lib/poolparty/plugin.rb +0 -8
- data/lib/poolparty/plugins/apache.rb +0 -228
- data/lib/poolparty/plugins/apache2/apache2.conf.erb +0 -630
- data/lib/poolparty/plugins/apache2/base.conf.erb +0 -171
- data/lib/poolparty/plugins/apache2/browser_fixes.conf.erb +0 -26
- data/lib/poolparty/plugins/apache2/default-site.conf.erb +0 -41
- data/lib/poolparty/plugins/apache2/mime-minimal.conf.erb +0 -15
- data/lib/poolparty/plugins/apache2/passenger_site.rb +0 -83
- data/lib/poolparty/plugins/apache2/php5.rb +0 -41
- data/lib/poolparty/plugins/apache2/virtual_host.rb +0 -59
- data/lib/poolparty/plugins/collectd/templates/collectd.conf.erb +0 -369
- data/lib/poolparty/plugins/collectd.rb +0 -24
- data/lib/poolparty/plugins/git/git_repository.rb +0 -83
- data/lib/poolparty/plugins/git.rb +0 -20
- data/lib/poolparty/plugins/hermes.rb +0 -102
- data/lib/poolparty/plugins/rails/app.rb +0 -29
- data/lib/poolparty/plugins/rails.rb +0 -25
- data/lib/poolparty/pool_party_log.rb +0 -47
- data/lib/poolparty/resource.rb +0 -296
- data/lib/poolparty/resources/conditional.rb +0 -65
- data/lib/poolparty/resources/cron.rb +0 -64
- data/lib/poolparty/resources/directory.rb +0 -54
- data/lib/poolparty/resources/exec.rb +0 -61
- data/lib/poolparty/resources/file.rb +0 -87
- data/lib/poolparty/resources/gem_package.rb +0 -55
- data/lib/poolparty/resources/group.rb +0 -46
- data/lib/poolparty/resources/line.rb +0 -67
- data/lib/poolparty/resources/link.rb +0 -50
- data/lib/poolparty/resources/mount.rb +0 -57
- data/lib/poolparty/resources/package.rb +0 -55
- data/lib/poolparty/resources/service.rb +0 -58
- data/lib/poolparty/resources/user.rb +0 -63
- data/lib/poolparty/resources/variable.rb +0 -61
- data/lib/proto/command_interface_handler.rb +0 -66
- data/lib/proto/command_query_handler.rb +0 -19
- data/lib/proto/gen-erl/commandInterface_thrift.erl +0 -29
- data/lib/proto/gen-erl/commandInterface_thrift.hrl +0 -5
- data/lib/proto/gen-erl/poolparty_constants.hrl +0 -9
- data/lib/proto/gen-erl/poolparty_types.erl +0 -30
- data/lib/proto/gen-erl/poolparty_types.hrl +0 -8
- data/lib/proto/gen-py/cloudthrift/CommandInterface-remote +0 -79
- data/lib/proto/gen-py/cloudthrift/CommandInterface.py +0 -251
- data/lib/proto/gen-py/cloudthrift/CommandInterface.pyc +0 -0
- data/lib/proto/gen-py/cloudthrift/__init__.py +0 -1
- data/lib/proto/gen-py/cloudthrift/__init__.pyc +0 -0
- data/lib/proto/gen-py/cloudthrift/constants.py +0 -9
- data/lib/proto/gen-py/cloudthrift/constants.pyc +0 -0
- data/lib/proto/gen-py/cloudthrift/ttypes.py +0 -160
- data/lib/proto/gen-py/cloudthrift/ttypes.pyc +0 -0
- data/lib/proto/gen-py/thrift/TSCons.py +0 -33
- data/lib/proto/gen-py/thrift/Thrift.py +0 -123
- data/lib/proto/gen-py/thrift/Thrift.pyc +0 -0
- data/lib/proto/gen-py/thrift/__init__.py +0 -20
- data/lib/proto/gen-py/thrift/__init__.pyc +0 -0
- data/lib/proto/gen-py/thrift/protocol/TBinaryProtocol.py +0 -259
- data/lib/proto/gen-py/thrift/protocol/TBinaryProtocol.pyc +0 -0
- data/lib/proto/gen-py/thrift/protocol/TProtocol.py +0 -205
- data/lib/proto/gen-py/thrift/protocol/TProtocol.pyc +0 -0
- data/lib/proto/gen-py/thrift/protocol/__init__.py +0 -20
- data/lib/proto/gen-py/thrift/protocol/__init__.pyc +0 -0
- data/lib/proto/gen-py/thrift/protocol/fastbinary.c +0 -1203
- data/lib/proto/gen-py/thrift/server/THttpServer.py +0 -63
- data/lib/proto/gen-py/thrift/server/TNonblockingServer.py +0 -309
- data/lib/proto/gen-py/thrift/server/TServer.py +0 -270
- data/lib/proto/gen-py/thrift/server/__init__.py +0 -20
- data/lib/proto/gen-py/thrift/transport/THttpClient.py +0 -100
- data/lib/proto/gen-py/thrift/transport/TSocket.py +0 -149
- data/lib/proto/gen-py/thrift/transport/TSocket.pyc +0 -0
- data/lib/proto/gen-py/thrift/transport/TTransport.py +0 -326
- data/lib/proto/gen-py/thrift/transport/TTransport.pyc +0 -0
- data/lib/proto/gen-py/thrift/transport/TTwisted.py +0 -181
- data/lib/proto/gen-py/thrift/transport/__init__.py +0 -20
- data/lib/proto/gen-py/thrift/transport/__init__.pyc +0 -0
- data/lib/proto/gen-rb/command_interface.rb +0 -84
- data/lib/proto/gen-rb/poolparty_constants.rb +0 -10
- data/lib/proto/gen-rb/poolparty_types.rb +0 -45
- data/lib/proto/poolparty.thrift +0 -18
- data/lib/provision/bootstrap_scripts/build_centos.sh +0 -72
- data/lib/provision/bootstrap_scripts/build_ubuntu.sh +0 -76
- data/lib/provision/bootstrap_scripts/determine_os.sh +0 -21
- data/lib/provision/bootstrapper.rb +0 -44
- data/lib/provision/configure_scripts/configure_centos.erb +0 -7
- data/lib/provision/configure_scripts/configure_ubuntu.erb +0 -7
- data/tasks/development.rake +0 -91
- data/tasks/poolparty.rake +0 -118
- data/tasks/test.rake +0 -40
- data/test/fixtures/clouds/fake_clouds.rb +0 -9
- data/test/lib/cloud_providers/cloud_provider_instance_test.rb +0 -68
- data/test/lib/cloud_providers/cloud_provider_test.rb +0 -25
- data/test/lib/cloud_providers/connections_test.rb +0 -71
- data/test/lib/cloud_providers/ec2/ec2_helpers_test.rb +0 -29
- data/test/lib/cloud_providers/ec2/ec2_instance_test.rb +0 -68
- data/test/lib/cloud_providers/ec2/ec2_response_test.rb +0 -41
- data/test/lib/cloud_providers/ec2/ec2_test.rb +0 -120
- data/test/lib/cloud_providers/ssh/ssh_test.rb +0 -61
- data/test/lib/cloud_providers/vmware/vmware_test.rb +0 -46
- data/test/lib/core/integer_test.rb +0 -19
- data/test/lib/core/module_test.rb +0 -38
- data/test/lib/core/proc_test.rb +0 -26
- data/test/lib/core/time_test.rb +0 -51
- data/test/lib/dependency_resolvers/base_test.rb +0 -42
- data/test/lib/dependency_resolvers/chef/resources/chef_recipe_test.rb +0 -21
- data/test/lib/dependency_resolvers/chef/resources/http_request_test.rb +0 -29
- data/test/lib/dependency_resolvers/chef/resources/remote_directory_test.rb +0 -45
- data/test/lib/dependency_resolvers/chef/resources/remote_file_test.rb +0 -36
- data/test/lib/dependency_resolvers/chef/resources/route_test.rb +0 -37
- data/test/lib/dependency_resolvers/chef/resources/script_test.rb +0 -49
- data/test/lib/dependency_resolvers/chef_test.rb +0 -136
- data/test/lib/dependency_resolvers/proxy_object_test.rb +0 -75
- data/test/lib/mixins/callbacks_test.rb +0 -48
- data/test/lib/mixins/delayed_test.rb +0 -50
- data/test/lib/mixins/searchable_paths_test.rb +0 -83
- data/test/lib/poolparty/base_test.rb +0 -47
- data/test/lib/poolparty/default_test.rb +0 -17
- data/test/lib/poolparty/dsl_base_test.rb +0 -30
- data/test/lib/poolparty/installers/vmware_installer_test.rb +0 -16
- data/test/lib/poolparty/monitor_test.rb +0 -57
- data/test/lib/poolparty/plugins/apache2/php5_test.rb +0 -26
- data/test/lib/poolparty/plugins/apache2/virtual_host_test.rb +0 -28
- data/test/lib/poolparty/plugins/apache_test.rb +0 -35
- data/test/lib/poolparty/pool_party_log_test.rb +0 -17
- data/test/lib/poolparty/resource_test.rb +0 -162
- data/test/lib/poolparty/resources/conditional_test.rb +0 -50
- data/test/lib/poolparty/resources/cron_test.rb +0 -31
- data/test/lib/poolparty/resources/directory_test.rb +0 -21
- data/test/lib/poolparty/resources/exec_test.rb +0 -62
- data/test/lib/poolparty/resources/file_test.rb +0 -38
- data/test/lib/poolparty/resources/group_test.rb +0 -21
- data/test/lib/poolparty/resources/line_test.rb +0 -20
- data/test/lib/poolparty/resources/link_test.rb +0 -27
- data/test/lib/poolparty/resources/mount_test.rb +0 -32
- data/test/lib/poolparty/resources/package_test.rb +0 -28
- data/test/lib/poolparty/resources/service_test.rb +0 -31
- data/test/lib/poolparty/resources/user_test.rb +0 -33
- data/test/lib/poolparty/resources/variable_test.rb +0 -43
- data/test/lib/proto/command_query_handler_test.rb +0 -11
- data/test/lib/provision/base_test.rb +0 -16
- data/test/lib/provision/bootstrapper_test.rb +0 -19
- data/vendor/chef/apache2/README.rdoc +0 -59
- data/vendor/chef/apache2/attributes/apache.rb +0 -72
- data/vendor/chef/apache2/definitions/apache_module.rb +0 -36
- data/vendor/chef/apache2/definitions/apache_site.rb +0 -36
- data/vendor/chef/apache2/definitions/web_app.rb +0 -45
- data/vendor/chef/apache2/files/default/apache2_module_conf_generate.pl +0 -41
- data/vendor/chef/apache2/recipes/default.rb +0 -132
- data/vendor/chef/apache2/recipes/mod_alias.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_auth_basic.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_auth_digest.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_authn_file.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_authnz_ldap.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_authz_default.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_authz_groupfile.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_authz_host.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_authz_user.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_autoindex.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_cgi.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_dav.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_dav_svn.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_deflate.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_dir.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_env.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_expires.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_fcgid.rb +0 -35
- data/vendor/chef/apache2/recipes/mod_headers.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_ldap.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_log_config.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_mime.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_negotiation.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_php5.rb +0 -27
- data/vendor/chef/apache2/recipes/mod_proxy.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_proxy_http.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_python.rb +0 -22
- data/vendor/chef/apache2/recipes/mod_rewrite.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_setenvif.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_ssl.rb +0 -20
- data/vendor/chef/apache2/recipes/mod_status.rb +0 -20
- data/vendor/chef/apache2/templates/default/a2enmod.erb +0 -37
- data/vendor/chef/apache2/templates/default/apache2.conf.erb +0 -630
- data/vendor/chef/apache2/templates/default/default-site.erb +0 -45
- data/vendor/chef/chef-deploy/LICENSE +0 -201
- data/vendor/chef/chef-deploy/README.rdoc +0 -24
- data/vendor/chef/chef-deploy/Rakefile +0 -57
- data/vendor/chef/chef-deploy/TODO +0 -4
- data/vendor/chef/chef-deploy/lib/chef-deploy/cached_deploy.rb +0 -230
- data/vendor/chef/chef-deploy/lib/chef-deploy/git.rb +0 -132
- data/vendor/chef/chef-deploy/lib/chef-deploy/subversion.rb +0 -98
- data/vendor/chef/chef-deploy/lib/chef-deploy.rb +0 -183
- data/vendor/gems/colors/README.rdoc +0 -52
- data/vendor/gems/colors/Rakefile +0 -56
- data/vendor/gems/colors/VERSION.yml +0 -4
- data/vendor/gems/colors/colors.gemspec +0 -29
- data/vendor/gems/colors/lib/colors.rb +0 -45
- data/vendor/gems/colors/test/colors_test.rb +0 -26
- data/vendor/gems/colors/test/test_helper.rb +0 -10
- data/vendor/gems/context/History.txt +0 -10
- data/vendor/gems/context/License.txt +0 -20
- data/vendor/gems/context/Manifest.txt +0 -26
- data/vendor/gems/context/README.rdoc +0 -158
- data/vendor/gems/context/Rakefile +0 -4
- data/vendor/gems/context/config/hoe.rb +0 -73
- data/vendor/gems/context/config/requirements.rb +0 -15
- data/vendor/gems/context/context.gemspec +0 -44
- data/vendor/gems/context/countloc.rb +0 -65
- data/vendor/gems/context/coverage/-Library-Ruby-Gems-1_8-gems-rcov-0_8_1_2_0-lib-rcov_rb.html +0 -1598
- data/vendor/gems/context/coverage/index.html +0 -441
- data/vendor/gems/context/coverage/lib-context-context_rb.html +0 -669
- data/vendor/gems/context/coverage/lib-context-core_ext-string_rb.html +0 -627
- data/vendor/gems/context/coverage/lib-context-lifecycle_rb.html +0 -683
- data/vendor/gems/context/coverage/lib-context-shared_behavior_rb.html +0 -708
- data/vendor/gems/context/coverage/lib-context-suite_rb.html +0 -649
- data/vendor/gems/context/coverage/lib-context-test_rb.html +0 -637
- data/vendor/gems/context/coverage/lib-context-version_rb.html +0 -619
- data/vendor/gems/context/coverage/lib-context_rb.html +0 -623
- data/vendor/gems/context/lib/context/context.rb +0 -64
- data/vendor/gems/context/lib/context/core_ext/rails_hacks.rb +0 -10
- data/vendor/gems/context/lib/context/core_ext/string.rb +0 -17
- data/vendor/gems/context/lib/context/lifecycle.rb +0 -103
- data/vendor/gems/context/lib/context/shared_behavior.rb +0 -98
- data/vendor/gems/context/lib/context/suite.rb +0 -39
- data/vendor/gems/context/lib/context/test.rb +0 -37
- data/vendor/gems/context/lib/context/version.rb +0 -9
- data/vendor/gems/context/lib/context.rb +0 -19
- data/vendor/gems/context/setup.rb +0 -1585
- data/vendor/gems/context/tasks/deployment.rake +0 -34
- data/vendor/gems/context/tasks/environment.rake +0 -7
- data/vendor/gems/context/test/test_context.rb +0 -57
- data/vendor/gems/context/test/test_core_ext.rb +0 -21
- data/vendor/gems/context/test/test_helper.rb +0 -2
- data/vendor/gems/context/test/test_lifecycle.rb +0 -224
- data/vendor/gems/context/test/test_nested_lifecycle.rb +0 -44
- data/vendor/gems/context/test/test_shared.rb +0 -116
- data/vendor/gems/context/test/test_test.rb +0 -23
- data/vendor/gems/daemons/LICENSE +0 -29
- data/vendor/gems/daemons/README +0 -223
- data/vendor/gems/daemons/Rakefile +0 -84
- data/vendor/gems/daemons/Releases +0 -126
- data/vendor/gems/daemons/TODO +0 -6
- data/vendor/gems/daemons/examples/call/call.rb +0 -56
- data/vendor/gems/daemons/examples/call/call_monitor.rb +0 -55
- data/vendor/gems/daemons/examples/daemonize/daemonize.rb +0 -20
- data/vendor/gems/daemons/examples/run/ctrl_crash.rb +0 -17
- data/vendor/gems/daemons/examples/run/ctrl_exec.rb +0 -16
- data/vendor/gems/daemons/examples/run/ctrl_exit.rb +0 -15
- data/vendor/gems/daemons/examples/run/ctrl_keep_pid_files.rb +0 -17
- data/vendor/gems/daemons/examples/run/ctrl_monitor.rb +0 -16
- data/vendor/gems/daemons/examples/run/ctrl_multiple.rb +0 -16
- data/vendor/gems/daemons/examples/run/ctrl_normal.rb +0 -12
- data/vendor/gems/daemons/examples/run/ctrl_ontop.rb +0 -16
- data/vendor/gems/daemons/examples/run/ctrl_optionparser.rb +0 -43
- data/vendor/gems/daemons/examples/run/ctrl_proc.rb +0 -25
- data/vendor/gems/daemons/examples/run/ctrl_proc.rb.output +0 -101
- data/vendor/gems/daemons/examples/run/ctrl_proc_multiple.rb +0 -22
- data/vendor/gems/daemons/examples/run/ctrl_proc_multiple.rb.output +0 -2
- data/vendor/gems/daemons/examples/run/ctrl_proc_simple.rb +0 -17
- data/vendor/gems/daemons/examples/run/myserver.rb +0 -12
- data/vendor/gems/daemons/examples/run/myserver_crashing.rb +0 -14
- data/vendor/gems/daemons/examples/run/myserver_crashing.rb.output +0 -30
- data/vendor/gems/daemons/examples/run/myserver_exiting.rb +0 -8
- data/vendor/gems/daemons/lib/daemons/application.rb +0 -372
- data/vendor/gems/daemons/lib/daemons/application_group.rb +0 -152
- data/vendor/gems/daemons/lib/daemons/cmdline.rb +0 -117
- data/vendor/gems/daemons/lib/daemons/controller.rb +0 -134
- data/vendor/gems/daemons/lib/daemons/daemonize.rb +0 -263
- data/vendor/gems/daemons/lib/daemons/exceptions.rb +0 -28
- data/vendor/gems/daemons/lib/daemons/monitor.rb +0 -127
- data/vendor/gems/daemons/lib/daemons/pid.rb +0 -101
- data/vendor/gems/daemons/lib/daemons/pidfile.rb +0 -111
- data/vendor/gems/daemons/lib/daemons/pidmem.rb +0 -10
- data/vendor/gems/daemons/lib/daemons.rb +0 -283
- data/vendor/gems/daemons/setup.rb +0 -1360
- data/vendor/gems/fakeweb/CHANGELOG +0 -163
- data/vendor/gems/fakeweb/LICENSE.txt +0 -281
- data/vendor/gems/fakeweb/README.rdoc +0 -193
- data/vendor/gems/fakeweb/Rakefile +0 -76
- data/vendor/gems/fakeweb/fakeweb.gemspec +0 -21
- data/vendor/gems/fakeweb/lib/fake_web/ext/net_http.rb +0 -71
- data/vendor/gems/fakeweb/lib/fake_web/registry.rb +0 -103
- data/vendor/gems/fakeweb/lib/fake_web/responder.rb +0 -113
- data/vendor/gems/fakeweb/lib/fake_web/response.rb +0 -10
- data/vendor/gems/fakeweb/lib/fake_web/stub_socket.rb +0 -15
- data/vendor/gems/fakeweb/lib/fake_web/utility.rb +0 -22
- data/vendor/gems/fakeweb/lib/fake_web.rb +0 -172
- data/vendor/gems/fakeweb/lib/fakeweb.rb +0 -2
- data/vendor/gems/fakeweb/test/fixtures/google_response_from_curl +0 -12
- data/vendor/gems/fakeweb/test/fixtures/google_response_with_transfer_encoding +0 -17
- data/vendor/gems/fakeweb/test/fixtures/google_response_without_transfer_encoding +0 -11
- data/vendor/gems/fakeweb/test/fixtures/test_example.txt +0 -1
- data/vendor/gems/fakeweb/test/fixtures/test_txt_file +0 -3
- data/vendor/gems/fakeweb/test/test_allow_net_connect.rb +0 -85
- data/vendor/gems/fakeweb/test/test_deprecations.rb +0 -54
- data/vendor/gems/fakeweb/test/test_fake_authentication.rb +0 -92
- data/vendor/gems/fakeweb/test/test_fake_web.rb +0 -518
- data/vendor/gems/fakeweb/test/test_fake_web_open_uri.rb +0 -58
- data/vendor/gems/fakeweb/test/test_helper.rb +0 -74
- data/vendor/gems/fakeweb/test/test_missing_open_uri.rb +0 -25
- data/vendor/gems/fakeweb/test/test_precedence.rb +0 -51
- data/vendor/gems/fakeweb/test/test_query_string.rb +0 -45
- data/vendor/gems/fakeweb/test/test_regexes.rb +0 -103
- data/vendor/gems/fakeweb/test/test_response_headers.rb +0 -73
- data/vendor/gems/fakeweb/test/test_trailing_slashes.rb +0 -53
- data/vendor/gems/fakeweb/test/test_utility.rb +0 -70
- data/vendor/gems/gratr/Grater.xcf +0 -0
- data/vendor/gems/gratr/README +0 -335
- data/vendor/gems/gratr/Rakefile +0 -220
- data/vendor/gems/gratr/examples/graph_self.rb +0 -54
- data/vendor/gems/gratr/examples/module_graph.jpg +0 -0
- data/vendor/gems/gratr/examples/module_graph.rb +0 -12
- data/vendor/gems/gratr/examples/self_graph.dot +0 -117
- data/vendor/gems/gratr/examples/self_graph.jpg +0 -0
- data/vendor/gems/gratr/examples/visualize.dot +0 -58
- data/vendor/gems/gratr/examples/visualize.jpg +0 -0
- data/vendor/gems/gratr/examples/visualize.rb +0 -11
- data/vendor/gems/gratr/install.rb +0 -49
- data/vendor/gems/gratr/lib/gratr/adjacency_graph.rb +0 -230
- data/vendor/gems/gratr/lib/gratr/base.rb +0 -34
- data/vendor/gems/gratr/lib/gratr/biconnected.rb +0 -116
- data/vendor/gems/gratr/lib/gratr/chinese_postman.rb +0 -123
- data/vendor/gems/gratr/lib/gratr/common.rb +0 -73
- data/vendor/gems/gratr/lib/gratr/comparability.rb +0 -92
- data/vendor/gems/gratr/lib/gratr/digraph.rb +0 -115
- data/vendor/gems/gratr/lib/gratr/digraph_distance.rb +0 -185
- data/vendor/gems/gratr/lib/gratr/dot.rb +0 -95
- data/vendor/gems/gratr/lib/gratr/edge.rb +0 -145
- data/vendor/gems/gratr/lib/gratr/graph.rb +0 -315
- data/vendor/gems/gratr/lib/gratr/graph_api.rb +0 -82
- data/vendor/gems/gratr/lib/gratr/import.rb +0 -44
- data/vendor/gems/gratr/lib/gratr/labels.rb +0 -103
- data/vendor/gems/gratr/lib/gratr/maximum_flow.rb +0 -107
- data/vendor/gems/gratr/lib/gratr/rdot.rb +0 -332
- data/vendor/gems/gratr/lib/gratr/search.rb +0 -422
- data/vendor/gems/gratr/lib/gratr/strong_components.rb +0 -127
- data/vendor/gems/gratr/lib/gratr/undirected_graph.rb +0 -153
- data/vendor/gems/gratr/lib/gratr.rb +0 -42
- data/vendor/gems/gratr/lib/priority-queue/benchmark/dijkstra.rb +0 -171
- data/vendor/gems/gratr/lib/priority-queue/compare_comments.rb +0 -49
- data/vendor/gems/gratr/lib/priority-queue/ext/priority_queue/CPriorityQueue/extconf.rb +0 -2
- data/vendor/gems/gratr/lib/priority-queue/lib/priority_queue/c_priority_queue.rb +0 -1
- data/vendor/gems/gratr/lib/priority-queue/lib/priority_queue/poor_priority_queue.rb +0 -46
- data/vendor/gems/gratr/lib/priority-queue/lib/priority_queue/ruby_priority_queue.rb +0 -525
- data/vendor/gems/gratr/lib/priority-queue/lib/priority_queue.rb +0 -14
- data/vendor/gems/gratr/lib/priority-queue/setup.rb +0 -1551
- data/vendor/gems/gratr/lib/priority-queue/test/priority_queue_test.rb +0 -371
- data/vendor/gems/gratr/tests/TestBiconnected.rb +0 -53
- data/vendor/gems/gratr/tests/TestChinesePostman.rb +0 -53
- data/vendor/gems/gratr/tests/TestComplement.rb +0 -54
- data/vendor/gems/gratr/tests/TestDigraph.rb +0 -333
- data/vendor/gems/gratr/tests/TestDigraphDistance.rb +0 -138
- data/vendor/gems/gratr/tests/TestDot.rb +0 -75
- data/vendor/gems/gratr/tests/TestEdge.rb +0 -171
- data/vendor/gems/gratr/tests/TestInspection.rb +0 -57
- data/vendor/gems/gratr/tests/TestMultiEdge.rb +0 -57
- data/vendor/gems/gratr/tests/TestNeighborhood.rb +0 -64
- data/vendor/gems/gratr/tests/TestProperties.rb +0 -160
- data/vendor/gems/gratr/tests/TestSearch.rb +0 -277
- data/vendor/gems/gratr/tests/TestStrongComponents.rb +0 -85
- data/vendor/gems/gratr/tests/TestTriagulated.rb +0 -137
- data/vendor/gems/gratr/tests/TestUndirectedGraph.rb +0 -219
- data/vendor/gems/net-ssh/CHANGELOG.rdoc +0 -127
- data/vendor/gems/net-ssh/Manifest +0 -104
- data/vendor/gems/net-ssh/README.rdoc +0 -110
- data/vendor/gems/net-ssh/Rakefile +0 -26
- data/vendor/gems/net-ssh/THANKS.rdoc +0 -16
- data/vendor/gems/net-ssh/lib/net/ssh/authentication/agent.rb +0 -176
- data/vendor/gems/net-ssh/lib/net/ssh/authentication/constants.rb +0 -18
- data/vendor/gems/net-ssh/lib/net/ssh/authentication/key_manager.rb +0 -193
- data/vendor/gems/net-ssh/lib/net/ssh/authentication/methods/abstract.rb +0 -60
- data/vendor/gems/net-ssh/lib/net/ssh/authentication/methods/hostbased.rb +0 -71
- data/vendor/gems/net-ssh/lib/net/ssh/authentication/methods/keyboard_interactive.rb +0 -66
- data/vendor/gems/net-ssh/lib/net/ssh/authentication/methods/password.rb +0 -39
- data/vendor/gems/net-ssh/lib/net/ssh/authentication/methods/publickey.rb +0 -92
- data/vendor/gems/net-ssh/lib/net/ssh/authentication/pageant.rb +0 -183
- data/vendor/gems/net-ssh/lib/net/ssh/authentication/session.rb +0 -134
- data/vendor/gems/net-ssh/lib/net/ssh/buffer.rb +0 -340
- data/vendor/gems/net-ssh/lib/net/ssh/buffered_io.rb +0 -149
- data/vendor/gems/net-ssh/lib/net/ssh/config.rb +0 -181
- data/vendor/gems/net-ssh/lib/net/ssh/connection/channel.rb +0 -625
- data/vendor/gems/net-ssh/lib/net/ssh/connection/constants.rb +0 -33
- data/vendor/gems/net-ssh/lib/net/ssh/connection/session.rb +0 -596
- data/vendor/gems/net-ssh/lib/net/ssh/connection/term.rb +0 -178
- data/vendor/gems/net-ssh/lib/net/ssh/errors.rb +0 -85
- data/vendor/gems/net-ssh/lib/net/ssh/key_factory.rb +0 -102
- data/vendor/gems/net-ssh/lib/net/ssh/known_hosts.rb +0 -129
- data/vendor/gems/net-ssh/lib/net/ssh/loggable.rb +0 -61
- data/vendor/gems/net-ssh/lib/net/ssh/packet.rb +0 -102
- data/vendor/gems/net-ssh/lib/net/ssh/prompt.rb +0 -93
- data/vendor/gems/net-ssh/lib/net/ssh/proxy/errors.rb +0 -14
- data/vendor/gems/net-ssh/lib/net/ssh/proxy/http.rb +0 -94
- data/vendor/gems/net-ssh/lib/net/ssh/proxy/socks4.rb +0 -70
- data/vendor/gems/net-ssh/lib/net/ssh/proxy/socks5.rb +0 -129
- data/vendor/gems/net-ssh/lib/net/ssh/ruby_compat.rb +0 -7
- data/vendor/gems/net-ssh/lib/net/ssh/service/forward.rb +0 -267
- data/vendor/gems/net-ssh/lib/net/ssh/test/channel.rb +0 -129
- data/vendor/gems/net-ssh/lib/net/ssh/test/extensions.rb +0 -152
- data/vendor/gems/net-ssh/lib/net/ssh/test/kex.rb +0 -44
- data/vendor/gems/net-ssh/lib/net/ssh/test/local_packet.rb +0 -51
- data/vendor/gems/net-ssh/lib/net/ssh/test/packet.rb +0 -81
- data/vendor/gems/net-ssh/lib/net/ssh/test/remote_packet.rb +0 -38
- data/vendor/gems/net-ssh/lib/net/ssh/test/script.rb +0 -157
- data/vendor/gems/net-ssh/lib/net/ssh/test/socket.rb +0 -59
- data/vendor/gems/net-ssh/lib/net/ssh/test.rb +0 -89
- data/vendor/gems/net-ssh/lib/net/ssh/transport/algorithms.rb +0 -384
- data/vendor/gems/net-ssh/lib/net/ssh/transport/cipher_factory.rb +0 -80
- data/vendor/gems/net-ssh/lib/net/ssh/transport/constants.rb +0 -30
- data/vendor/gems/net-ssh/lib/net/ssh/transport/hmac/abstract.rb +0 -78
- data/vendor/gems/net-ssh/lib/net/ssh/transport/hmac/md5.rb +0 -12
- data/vendor/gems/net-ssh/lib/net/ssh/transport/hmac/md5_96.rb +0 -11
- data/vendor/gems/net-ssh/lib/net/ssh/transport/hmac/none.rb +0 -15
- data/vendor/gems/net-ssh/lib/net/ssh/transport/hmac/sha1.rb +0 -13
- data/vendor/gems/net-ssh/lib/net/ssh/transport/hmac/sha1_96.rb +0 -11
- data/vendor/gems/net-ssh/lib/net/ssh/transport/hmac.rb +0 -31
- data/vendor/gems/net-ssh/lib/net/ssh/transport/identity_cipher.rb +0 -55
- data/vendor/gems/net-ssh/lib/net/ssh/transport/kex/diffie_hellman_group1_sha1.rb +0 -208
- data/vendor/gems/net-ssh/lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha1.rb +0 -77
- data/vendor/gems/net-ssh/lib/net/ssh/transport/kex.rb +0 -13
- data/vendor/gems/net-ssh/lib/net/ssh/transport/openssl.rb +0 -128
- data/vendor/gems/net-ssh/lib/net/ssh/transport/packet_stream.rb +0 -230
- data/vendor/gems/net-ssh/lib/net/ssh/transport/server_version.rb +0 -60
- data/vendor/gems/net-ssh/lib/net/ssh/transport/session.rb +0 -276
- data/vendor/gems/net-ssh/lib/net/ssh/transport/state.rb +0 -201
- data/vendor/gems/net-ssh/lib/net/ssh/verifiers/lenient.rb +0 -30
- data/vendor/gems/net-ssh/lib/net/ssh/verifiers/null.rb +0 -12
- data/vendor/gems/net-ssh/lib/net/ssh/verifiers/strict.rb +0 -53
- data/vendor/gems/net-ssh/lib/net/ssh/version.rb +0 -62
- data/vendor/gems/net-ssh/lib/net/ssh.rb +0 -215
- data/vendor/gems/net-ssh/net-ssh.gemspec +0 -33
- data/vendor/gems/net-ssh/setup.rb +0 -1585
- data/vendor/gems/net-ssh/test/authentication/methods/common.rb +0 -28
- data/vendor/gems/net-ssh/test/authentication/methods/test_abstract.rb +0 -51
- data/vendor/gems/net-ssh/test/authentication/methods/test_hostbased.rb +0 -114
- data/vendor/gems/net-ssh/test/authentication/methods/test_keyboard_interactive.rb +0 -98
- data/vendor/gems/net-ssh/test/authentication/methods/test_password.rb +0 -50
- data/vendor/gems/net-ssh/test/authentication/methods/test_publickey.rb +0 -127
- data/vendor/gems/net-ssh/test/authentication/test_agent.rb +0 -205
- data/vendor/gems/net-ssh/test/authentication/test_key_manager.rb +0 -105
- data/vendor/gems/net-ssh/test/authentication/test_session.rb +0 -93
- data/vendor/gems/net-ssh/test/common.rb +0 -106
- data/vendor/gems/net-ssh/test/configs/eqsign +0 -3
- data/vendor/gems/net-ssh/test/configs/exact_match +0 -8
- data/vendor/gems/net-ssh/test/configs/wild_cards +0 -14
- data/vendor/gems/net-ssh/test/connection/test_channel.rb +0 -452
- data/vendor/gems/net-ssh/test/connection/test_session.rb +0 -488
- data/vendor/gems/net-ssh/test/test_all.rb +0 -6
- data/vendor/gems/net-ssh/test/test_buffer.rb +0 -336
- data/vendor/gems/net-ssh/test/test_buffered_io.rb +0 -63
- data/vendor/gems/net-ssh/test/test_config.rb +0 -84
- data/vendor/gems/net-ssh/test/test_key_factory.rb +0 -67
- data/vendor/gems/net-ssh/test/transport/hmac/test_md5.rb +0 -39
- data/vendor/gems/net-ssh/test/transport/hmac/test_md5_96.rb +0 -25
- data/vendor/gems/net-ssh/test/transport/hmac/test_none.rb +0 -34
- data/vendor/gems/net-ssh/test/transport/hmac/test_sha1.rb +0 -34
- data/vendor/gems/net-ssh/test/transport/hmac/test_sha1_96.rb +0 -25
- data/vendor/gems/net-ssh/test/transport/kex/test_diffie_hellman_group1_sha1.rb +0 -146
- data/vendor/gems/net-ssh/test/transport/kex/test_diffie_hellman_group_exchange_sha1.rb +0 -92
- data/vendor/gems/net-ssh/test/transport/test_algorithms.rb +0 -302
- data/vendor/gems/net-ssh/test/transport/test_cipher_factory.rb +0 -171
- data/vendor/gems/net-ssh/test/transport/test_hmac.rb +0 -34
- data/vendor/gems/net-ssh/test/transport/test_identity_cipher.rb +0 -40
- data/vendor/gems/net-ssh/test/transport/test_packet_stream.rb +0 -435
- data/vendor/gems/net-ssh/test/transport/test_server_version.rb +0 -57
- data/vendor/gems/net-ssh/test/transport/test_session.rb +0 -315
- data/vendor/gems/net-ssh/test/transport/test_state.rb +0 -173
- data/vendor/gems/parenting/History.txt +0 -4
- data/vendor/gems/parenting/Manifest.txt +0 -14
- data/vendor/gems/parenting/PostInstall.txt +0 -2
- data/vendor/gems/parenting/README.rdoc +0 -47
- data/vendor/gems/parenting/Rakefile +0 -44
- data/vendor/gems/parenting/lib/parenting/parenting.rb +0 -77
- data/vendor/gems/parenting/lib/parenting.rb +0 -10
- data/vendor/gems/parenting/parenting.gemspec +0 -39
- data/vendor/gems/parenting/script/console +0 -10
- data/vendor/gems/parenting/script/destroy +0 -14
- data/vendor/gems/parenting/script/generate +0 -14
- data/vendor/gems/parenting/test/file_to_eval.rb +0 -9
- data/vendor/gems/parenting/test/test_helper.rb +0 -5
- data/vendor/gems/parenting/test/test_parenting.rb +0 -117
- data/vendor/gems/right_aws/History.txt +0 -246
- data/vendor/gems/right_aws/Manifest.txt +0 -34
- data/vendor/gems/right_aws/README.txt +0 -166
- data/vendor/gems/right_aws/Rakefile +0 -112
- data/vendor/gems/right_aws/lib/acf/right_acf_interface.rb +0 -379
- data/vendor/gems/right_aws/lib/awsbase/benchmark_fix.rb +0 -39
- data/vendor/gems/right_aws/lib/awsbase/right_awsbase.rb +0 -797
- data/vendor/gems/right_aws/lib/awsbase/support.rb +0 -111
- data/vendor/gems/right_aws/lib/ec2/right_ec2.rb +0 -1737
- data/vendor/gems/right_aws/lib/right_aws.rb +0 -69
- data/vendor/gems/right_aws/lib/s3/right_s3.rb +0 -1094
- data/vendor/gems/right_aws/lib/s3/right_s3_interface.rb +0 -1175
- data/vendor/gems/right_aws/lib/sdb/active_sdb.rb +0 -930
- data/vendor/gems/right_aws/lib/sdb/right_sdb_interface.rb +0 -698
- data/vendor/gems/right_aws/lib/sqs/right_sqs.rb +0 -388
- data/vendor/gems/right_aws/lib/sqs/right_sqs_gen2.rb +0 -286
- data/vendor/gems/right_aws/lib/sqs/right_sqs_gen2_interface.rb +0 -444
- data/vendor/gems/right_aws/lib/sqs/right_sqs_interface.rb +0 -596
- data/vendor/gems/right_aws/test/acf/test_helper.rb +0 -2
- data/vendor/gems/right_aws/test/acf/test_right_acf.rb +0 -146
- data/vendor/gems/right_aws/test/ec2/test_helper.rb +0 -2
- data/vendor/gems/right_aws/test/ec2/test_right_ec2.rb +0 -108
- data/vendor/gems/right_aws/test/http_connection.rb +0 -87
- data/vendor/gems/right_aws/test/s3/test_helper.rb +0 -2
- data/vendor/gems/right_aws/test/s3/test_right_s3.rb +0 -419
- data/vendor/gems/right_aws/test/s3/test_right_s3_stubbed.rb +0 -95
- data/vendor/gems/right_aws/test/sdb/test_active_sdb.rb +0 -299
- data/vendor/gems/right_aws/test/sdb/test_helper.rb +0 -3
- data/vendor/gems/right_aws/test/sdb/test_right_sdb.rb +0 -247
- data/vendor/gems/right_aws/test/sqs/test_helper.rb +0 -2
- data/vendor/gems/right_aws/test/sqs/test_right_sqs.rb +0 -291
- data/vendor/gems/right_aws/test/sqs/test_right_sqs_gen2.rb +0 -209
- data/vendor/gems/right_aws/test/test_credentials.rb +0 -37
- data/vendor/gems/right_aws/test/ts_right_aws.rb +0 -14
- data/vendor/gems/right_http_connection/History.txt +0 -59
- data/vendor/gems/right_http_connection/Manifest.txt +0 -7
- data/vendor/gems/right_http_connection/README.txt +0 -54
- data/vendor/gems/right_http_connection/Rakefile +0 -103
- data/vendor/gems/right_http_connection/lib/net_fix.rb +0 -160
- data/vendor/gems/right_http_connection/lib/right_http_connection.rb +0 -442
- data/vendor/gems/right_http_connection/right_http_connection.gemspec +0 -31
- data/vendor/gems/right_http_connection/setup.rb +0 -1585
- data/vendor/gems/shoulda/CONTRIBUTION_GUIDELINES.rdoc +0 -10
- data/vendor/gems/shoulda/MIT-LICENSE +0 -22
- data/vendor/gems/shoulda/README.rdoc +0 -171
- data/vendor/gems/shoulda/Rakefile +0 -72
- data/vendor/gems/shoulda/bin/convert_to_should_syntax +0 -42
- data/vendor/gems/shoulda/init.rb +0 -1
- data/vendor/gems/shoulda/lib/shoulda/action_controller/macros.rb +0 -240
- data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/assign_to_matcher.rb +0 -109
- data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/filter_param_matcher.rb +0 -57
- data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/render_with_layout_matcher.rb +0 -81
- data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/respond_with_content_type_matcher.rb +0 -74
- data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/respond_with_matcher.rb +0 -81
- data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/route_matcher.rb +0 -93
- data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/set_session_matcher.rb +0 -87
- data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/set_the_flash_matcher.rb +0 -85
- data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers.rb +0 -37
- data/vendor/gems/shoulda/lib/shoulda/action_controller.rb +0 -26
- data/vendor/gems/shoulda/lib/shoulda/action_mailer/assertions.rb +0 -38
- data/vendor/gems/shoulda/lib/shoulda/action_mailer.rb +0 -10
- data/vendor/gems/shoulda/lib/shoulda/action_view/macros.rb +0 -61
- data/vendor/gems/shoulda/lib/shoulda/action_view.rb +0 -10
- data/vendor/gems/shoulda/lib/shoulda/active_record/assertions.rb +0 -69
- data/vendor/gems/shoulda/lib/shoulda/active_record/helpers.rb +0 -27
- data/vendor/gems/shoulda/lib/shoulda/active_record/macros.rb +0 -512
- data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/allow_mass_assignment_of_matcher.rb +0 -83
- data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/allow_value_matcher.rb +0 -102
- data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/association_matcher.rb +0 -226
- data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/ensure_inclusion_of_matcher.rb +0 -87
- data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/ensure_length_of_matcher.rb +0 -141
- data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/have_db_column_matcher.rb +0 -169
- data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/have_db_index_matcher.rb +0 -112
- data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/have_named_scope_matcher.rb +0 -128
- data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/have_readonly_attribute_matcher.rb +0 -59
- data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/validate_acceptance_of_matcher.rb +0 -41
- data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/validate_format_of_matcher.rb +0 -67
- data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/validate_numericality_of_matcher.rb +0 -39
- data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/validate_presence_of_matcher.rb +0 -60
- data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/validate_uniqueness_of_matcher.rb +0 -148
- data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/validation_matcher.rb +0 -57
- data/vendor/gems/shoulda/lib/shoulda/active_record/matchers.rb +0 -43
- data/vendor/gems/shoulda/lib/shoulda/active_record.rb +0 -16
- data/vendor/gems/shoulda/lib/shoulda/assertions.rb +0 -71
- data/vendor/gems/shoulda/lib/shoulda/autoload_macros.rb +0 -46
- data/vendor/gems/shoulda/lib/shoulda/context.rb +0 -402
- data/vendor/gems/shoulda/lib/shoulda/helpers.rb +0 -8
- data/vendor/gems/shoulda/lib/shoulda/macros.rb +0 -133
- data/vendor/gems/shoulda/lib/shoulda/private_helpers.rb +0 -13
- data/vendor/gems/shoulda/lib/shoulda/proc_extensions.rb +0 -14
- data/vendor/gems/shoulda/lib/shoulda/rails.rb +0 -13
- data/vendor/gems/shoulda/lib/shoulda/rspec.rb +0 -11
- data/vendor/gems/shoulda/lib/shoulda/tasks/list_tests.rake +0 -29
- data/vendor/gems/shoulda/lib/shoulda/tasks/yaml_to_shoulda.rake +0 -28
- data/vendor/gems/shoulda/lib/shoulda/tasks.rb +0 -3
- data/vendor/gems/shoulda/lib/shoulda/test_unit.rb +0 -22
- data/vendor/gems/shoulda/lib/shoulda.rb +0 -9
- data/vendor/gems/shoulda/rails/init.rb +0 -7
- data/vendor/gems/shoulda/shoulda.gemspec +0 -31
- data/vendor/gems/shoulda/tasks/shoulda.rake +0 -1
- data/vendor/gems/shoulda/test/README +0 -36
- data/vendor/gems/shoulda/test/fail_macros.rb +0 -39
- data/vendor/gems/shoulda/test/fixtures/addresses.yml +0 -3
- data/vendor/gems/shoulda/test/fixtures/friendships.yml +0 -0
- data/vendor/gems/shoulda/test/fixtures/posts.yml +0 -5
- data/vendor/gems/shoulda/test/fixtures/products.yml +0 -0
- data/vendor/gems/shoulda/test/fixtures/taggings.yml +0 -0
- data/vendor/gems/shoulda/test/fixtures/tags.yml +0 -9
- data/vendor/gems/shoulda/test/fixtures/users.yml +0 -6
- data/vendor/gems/shoulda/test/functional/posts_controller_test.rb +0 -121
- data/vendor/gems/shoulda/test/functional/users_controller_test.rb +0 -19
- data/vendor/gems/shoulda/test/matchers/active_record/allow_mass_assignment_of_matcher_test.rb +0 -68
- data/vendor/gems/shoulda/test/matchers/active_record/allow_value_matcher_test.rb +0 -64
- data/vendor/gems/shoulda/test/matchers/active_record/association_matcher_test.rb +0 -263
- data/vendor/gems/shoulda/test/matchers/active_record/ensure_inclusion_of_matcher_test.rb +0 -80
- data/vendor/gems/shoulda/test/matchers/active_record/ensure_length_of_matcher_test.rb +0 -158
- data/vendor/gems/shoulda/test/matchers/active_record/have_db_column_matcher_test.rb +0 -169
- data/vendor/gems/shoulda/test/matchers/active_record/have_db_index_matcher_test.rb +0 -91
- data/vendor/gems/shoulda/test/matchers/active_record/have_named_scope_matcher_test.rb +0 -65
- data/vendor/gems/shoulda/test/matchers/active_record/have_readonly_attributes_matcher_test.rb +0 -29
- data/vendor/gems/shoulda/test/matchers/active_record/validate_acceptance_of_matcher_test.rb +0 -44
- data/vendor/gems/shoulda/test/matchers/active_record/validate_format_of_matcher_test.rb +0 -39
- data/vendor/gems/shoulda/test/matchers/active_record/validate_numericality_of_matcher_test.rb +0 -52
- data/vendor/gems/shoulda/test/matchers/active_record/validate_presence_of_matcher_test.rb +0 -86
- data/vendor/gems/shoulda/test/matchers/active_record/validate_uniqueness_of_matcher_test.rb +0 -147
- data/vendor/gems/shoulda/test/matchers/controller/assign_to_matcher_test.rb +0 -35
- data/vendor/gems/shoulda/test/matchers/controller/filter_param_matcher_test.rb +0 -32
- data/vendor/gems/shoulda/test/matchers/controller/render_with_layout_matcher_test.rb +0 -33
- data/vendor/gems/shoulda/test/matchers/controller/respond_with_content_type_matcher_test.rb +0 -32
- data/vendor/gems/shoulda/test/matchers/controller/respond_with_matcher_test.rb +0 -106
- data/vendor/gems/shoulda/test/matchers/controller/route_matcher_test.rb +0 -58
- data/vendor/gems/shoulda/test/matchers/controller/set_session_matcher_test.rb +0 -38
- data/vendor/gems/shoulda/test/matchers/controller/set_the_flash_matcher.rb +0 -41
- data/vendor/gems/shoulda/test/model_builder.rb +0 -106
- data/vendor/gems/shoulda/test/other/autoload_macro_test.rb +0 -18
- data/vendor/gems/shoulda/test/other/context_test.rb +0 -189
- data/vendor/gems/shoulda/test/other/convert_to_should_syntax_test.rb +0 -63
- data/vendor/gems/shoulda/test/other/helpers_test.rb +0 -340
- data/vendor/gems/shoulda/test/other/private_helpers_test.rb +0 -32
- data/vendor/gems/shoulda/test/other/should_test.rb +0 -271
- data/vendor/gems/shoulda/test/rails_root/app/controllers/application_controller.rb +0 -25
- data/vendor/gems/shoulda/test/rails_root/app/controllers/posts_controller.rb +0 -87
- data/vendor/gems/shoulda/test/rails_root/app/controllers/users_controller.rb +0 -84
- data/vendor/gems/shoulda/test/rails_root/app/helpers/application_helper.rb +0 -3
- data/vendor/gems/shoulda/test/rails_root/app/helpers/posts_helper.rb +0 -2
- data/vendor/gems/shoulda/test/rails_root/app/helpers/users_helper.rb +0 -2
- data/vendor/gems/shoulda/test/rails_root/app/models/address.rb +0 -7
- data/vendor/gems/shoulda/test/rails_root/app/models/flea.rb +0 -3
- data/vendor/gems/shoulda/test/rails_root/app/models/friendship.rb +0 -4
- data/vendor/gems/shoulda/test/rails_root/app/models/pets/cat.rb +0 -7
- data/vendor/gems/shoulda/test/rails_root/app/models/pets/dog.rb +0 -10
- data/vendor/gems/shoulda/test/rails_root/app/models/post.rb +0 -12
- data/vendor/gems/shoulda/test/rails_root/app/models/product.rb +0 -12
- data/vendor/gems/shoulda/test/rails_root/app/models/profile.rb +0 -2
- data/vendor/gems/shoulda/test/rails_root/app/models/registration.rb +0 -2
- data/vendor/gems/shoulda/test/rails_root/app/models/tag.rb +0 -8
- data/vendor/gems/shoulda/test/rails_root/app/models/tagging.rb +0 -4
- data/vendor/gems/shoulda/test/rails_root/app/models/treat.rb +0 -3
- data/vendor/gems/shoulda/test/rails_root/app/models/user.rb +0 -32
- data/vendor/gems/shoulda/test/rails_root/app/views/layouts/posts.rhtml +0 -19
- data/vendor/gems/shoulda/test/rails_root/app/views/layouts/users.rhtml +0 -17
- data/vendor/gems/shoulda/test/rails_root/app/views/layouts/wide.html.erb +0 -1
- data/vendor/gems/shoulda/test/rails_root/app/views/posts/edit.rhtml +0 -27
- data/vendor/gems/shoulda/test/rails_root/app/views/posts/index.rhtml +0 -25
- data/vendor/gems/shoulda/test/rails_root/app/views/posts/new.rhtml +0 -26
- data/vendor/gems/shoulda/test/rails_root/app/views/posts/show.rhtml +0 -18
- data/vendor/gems/shoulda/test/rails_root/app/views/users/edit.rhtml +0 -22
- data/vendor/gems/shoulda/test/rails_root/app/views/users/index.rhtml +0 -22
- data/vendor/gems/shoulda/test/rails_root/app/views/users/new.rhtml +0 -21
- data/vendor/gems/shoulda/test/rails_root/app/views/users/show.rhtml +0 -13
- data/vendor/gems/shoulda/test/rails_root/config/boot.rb +0 -110
- data/vendor/gems/shoulda/test/rails_root/config/database.yml +0 -4
- data/vendor/gems/shoulda/test/rails_root/config/environment.rb +0 -18
- data/vendor/gems/shoulda/test/rails_root/config/environments/test.rb +0 -0
- data/vendor/gems/shoulda/test/rails_root/config/initializers/new_rails_defaults.rb +0 -15
- data/vendor/gems/shoulda/test/rails_root/config/initializers/shoulda.rb +0 -8
- data/vendor/gems/shoulda/test/rails_root/config/routes.rb +0 -6
- data/vendor/gems/shoulda/test/rails_root/db/migrate/001_create_users.rb +0 -19
- data/vendor/gems/shoulda/test/rails_root/db/migrate/002_create_posts.rb +0 -13
- data/vendor/gems/shoulda/test/rails_root/db/migrate/003_create_taggings.rb +0 -12
- data/vendor/gems/shoulda/test/rails_root/db/migrate/004_create_tags.rb +0 -11
- data/vendor/gems/shoulda/test/rails_root/db/migrate/005_create_dogs.rb +0 -12
- data/vendor/gems/shoulda/test/rails_root/db/migrate/006_create_addresses.rb +0 -14
- data/vendor/gems/shoulda/test/rails_root/db/migrate/007_create_fleas.rb +0 -11
- data/vendor/gems/shoulda/test/rails_root/db/migrate/008_create_dogs_fleas.rb +0 -12
- data/vendor/gems/shoulda/test/rails_root/db/migrate/009_create_products.rb +0 -17
- data/vendor/gems/shoulda/test/rails_root/db/migrate/010_create_friendships.rb +0 -14
- data/vendor/gems/shoulda/test/rails_root/db/migrate/011_create_treats.rb +0 -12
- data/vendor/gems/shoulda/test/rails_root/db/migrate/20090506203502_create_profiles.rb +0 -12
- data/vendor/gems/shoulda/test/rails_root/db/migrate/20090506203536_create_registrations.rb +0 -14
- data/vendor/gems/shoulda/test/rails_root/db/migrate/20090513104502_create_cats.rb +0 -12
- data/vendor/gems/shoulda/test/rails_root/db/schema.rb +0 -0
- data/vendor/gems/shoulda/test/rails_root/public/404.html +0 -30
- data/vendor/gems/shoulda/test/rails_root/public/422.html +0 -30
- data/vendor/gems/shoulda/test/rails_root/public/500.html +0 -30
- data/vendor/gems/shoulda/test/rails_root/script/console +0 -3
- data/vendor/gems/shoulda/test/rails_root/script/generate +0 -3
- data/vendor/gems/shoulda/test/rails_root/test/shoulda_macros/custom_macro.rb +0 -6
- data/vendor/gems/shoulda/test/rails_root/vendor/gems/gem_with_macro-0.0.1/shoulda_macros/gem_macro.rb +0 -6
- data/vendor/gems/shoulda/test/rails_root/vendor/plugins/plugin_with_macro/shoulda_macros/plugin_macro.rb +0 -6
- data/vendor/gems/shoulda/test/rspec_test.rb +0 -207
- data/vendor/gems/shoulda/test/test_helper.rb +0 -28
- data/vendor/gems/shoulda/test/unit/address_test.rb +0 -10
- data/vendor/gems/shoulda/test/unit/cat_test.rb +0 -7
- data/vendor/gems/shoulda/test/unit/dog_test.rb +0 -9
- data/vendor/gems/shoulda/test/unit/flea_test.rb +0 -6
- data/vendor/gems/shoulda/test/unit/friendship_test.rb +0 -6
- data/vendor/gems/shoulda/test/unit/post_test.rb +0 -19
- data/vendor/gems/shoulda/test/unit/product_test.rb +0 -23
- data/vendor/gems/shoulda/test/unit/tag_test.rb +0 -15
- data/vendor/gems/shoulda/test/unit/tagging_test.rb +0 -6
- data/vendor/gems/shoulda/test/unit/user_test.rb +0 -80
- data/vendor/gems/thrift/CHANGELOG +0 -1
- data/vendor/gems/thrift/Makefile.am +0 -47
- data/vendor/gems/thrift/Manifest +0 -81
- data/vendor/gems/thrift/README +0 -43
- data/vendor/gems/thrift/Rakefile +0 -104
- data/vendor/gems/thrift/benchmark/Benchmark.thrift +0 -24
- data/vendor/gems/thrift/benchmark/benchmark.rb +0 -271
- data/vendor/gems/thrift/benchmark/client.rb +0 -74
- data/vendor/gems/thrift/benchmark/server.rb +0 -82
- data/vendor/gems/thrift/benchmark/thin_server.rb +0 -44
- data/vendor/gems/thrift/ext/binary_protocol_accelerated.c +0 -474
- data/vendor/gems/thrift/ext/binary_protocol_accelerated.h +0 -20
- data/vendor/gems/thrift/ext/compact_protocol.c +0 -665
- data/vendor/gems/thrift/ext/compact_protocol.h +0 -20
- data/vendor/gems/thrift/ext/constants.h +0 -95
- data/vendor/gems/thrift/ext/extconf.rb +0 -26
- data/vendor/gems/thrift/ext/macros.h +0 -41
- data/vendor/gems/thrift/ext/memory_buffer.c +0 -76
- data/vendor/gems/thrift/ext/memory_buffer.h +0 -20
- data/vendor/gems/thrift/ext/protocol.c +0 -185
- data/vendor/gems/thrift/ext/protocol.h +0 -20
- data/vendor/gems/thrift/ext/struct.c +0 -606
- data/vendor/gems/thrift/ext/struct.h +0 -67
- data/vendor/gems/thrift/ext/thrift_native.c +0 -194
- data/vendor/gems/thrift/lib/thrift/client.rb +0 -62
- data/vendor/gems/thrift/lib/thrift/core_ext/fixnum.rb +0 -29
- data/vendor/gems/thrift/lib/thrift/core_ext.rb +0 -23
- data/vendor/gems/thrift/lib/thrift/exceptions.rb +0 -82
- data/vendor/gems/thrift/lib/thrift/processor.rb +0 -57
- data/vendor/gems/thrift/lib/thrift/protocol/base_protocol.rb +0 -290
- data/vendor/gems/thrift/lib/thrift/protocol/binary_protocol.rb +0 -225
- data/vendor/gems/thrift/lib/thrift/protocol/binary_protocol_accelerated.rb +0 -35
- data/vendor/gems/thrift/lib/thrift/protocol/compact_protocol.rb +0 -422
- data/vendor/gems/thrift/lib/thrift/serializer/deserializer.rb +0 -33
- data/vendor/gems/thrift/lib/thrift/serializer/serializer.rb +0 -34
- data/vendor/gems/thrift/lib/thrift/server/base_server.rb +0 -31
- data/vendor/gems/thrift/lib/thrift/server/mongrel_http_server.rb +0 -58
- data/vendor/gems/thrift/lib/thrift/server/nonblocking_server.rb +0 -296
- data/vendor/gems/thrift/lib/thrift/server/simple_server.rb +0 -43
- data/vendor/gems/thrift/lib/thrift/server/thread_pool_server.rb +0 -75
- data/vendor/gems/thrift/lib/thrift/server/threaded_server.rb +0 -47
- data/vendor/gems/thrift/lib/thrift/struct.rb +0 -298
- data/vendor/gems/thrift/lib/thrift/thrift_native.rb +0 -24
- data/vendor/gems/thrift/lib/thrift/transport/base_server_transport.rb +0 -37
- data/vendor/gems/thrift/lib/thrift/transport/base_transport.rb +0 -70
- data/vendor/gems/thrift/lib/thrift/transport/buffered_transport.rb +0 -77
- data/vendor/gems/thrift/lib/thrift/transport/framed_transport.rb +0 -90
- data/vendor/gems/thrift/lib/thrift/transport/http_client_transport.rb +0 -45
- data/vendor/gems/thrift/lib/thrift/transport/io_stream_transport.rb +0 -39
- data/vendor/gems/thrift/lib/thrift/transport/memory_buffer_transport.rb +0 -96
- data/vendor/gems/thrift/lib/thrift/transport/server_socket.rb +0 -63
- data/vendor/gems/thrift/lib/thrift/transport/socket.rb +0 -136
- data/vendor/gems/thrift/lib/thrift/transport/unix_server_socket.rb +0 -60
- data/vendor/gems/thrift/lib/thrift/transport/unix_socket.rb +0 -40
- data/vendor/gems/thrift/lib/thrift/types.rb +0 -101
- data/vendor/gems/thrift/lib/thrift.rb +0 -59
- data/vendor/gems/thrift/script/proto_benchmark.rb +0 -121
- data/vendor/gems/thrift/script/read_struct.rb +0 -43
- data/vendor/gems/thrift/script/write_struct.rb +0 -30
- data/vendor/gems/thrift/setup.rb +0 -1585
- data/vendor/gems/thrift/spec/ThriftSpec.thrift +0 -84
- data/vendor/gems/thrift/spec/base_protocol_spec.rb +0 -160
- data/vendor/gems/thrift/spec/base_transport_spec.rb +0 -351
- data/vendor/gems/thrift/spec/binary_protocol_accelerated_spec.rb +0 -41
- data/vendor/gems/thrift/spec/binary_protocol_spec.rb +0 -63
- data/vendor/gems/thrift/spec/binary_protocol_spec_shared.rb +0 -375
- data/vendor/gems/thrift/spec/client_spec.rb +0 -100
- data/vendor/gems/thrift/spec/compact_protocol_spec.rb +0 -117
- data/vendor/gems/thrift/spec/exception_spec.rb +0 -142
- data/vendor/gems/thrift/spec/http_client_spec.rb +0 -49
- data/vendor/gems/thrift/spec/mongrel_http_server_spec.rb +0 -117
- data/vendor/gems/thrift/spec/nonblocking_server_spec.rb +0 -265
- data/vendor/gems/thrift/spec/processor_spec.rb +0 -83
- data/vendor/gems/thrift/spec/serializer_spec.rb +0 -69
- data/vendor/gems/thrift/spec/server_socket_spec.rb +0 -80
- data/vendor/gems/thrift/spec/server_spec.rb +0 -160
- data/vendor/gems/thrift/spec/socket_spec.rb +0 -61
- data/vendor/gems/thrift/spec/socket_spec_shared.rb +0 -104
- data/vendor/gems/thrift/spec/spec_helper.rb +0 -60
- data/vendor/gems/thrift/spec/struct_spec.rb +0 -252
- data/vendor/gems/thrift/spec/types_spec.rb +0 -116
- data/vendor/gems/thrift/spec/unix_socket_spec.rb +0 -108
- /data/{vendor/chef → examples/chef_cloud/chef-repo/cookbooks}/apache2/templates/default/a2dismod.erb +0 -0
- /data/{vendor/chef → examples/chef_cloud/chef-repo/cookbooks}/apache2/templates/default/a2dissite.erb +0 -0
- /data/{vendor/chef → examples/chef_cloud/chef-repo/cookbooks}/apache2/templates/default/a2ensite.erb +0 -0
- /data/{vendor/chef → examples/chef_cloud/chef-repo/cookbooks}/apache2/templates/default/port_apache.erb +0 -0
- /data/{vendor/chef → examples/chef_cloud/chef-repo/cookbooks}/apache2/templates/default/ports.conf.erb +0 -0
- /data/{vendor/chef → examples/chef_cloud/chef-repo/cookbooks}/apache2/templates/default/web_app.conf.erb +0 -0
- /data/{lib/proto/gen-py/__init__.py → examples/chef_cloud/chef-repo/cookbooks/chef/recipes/default.rb} +0 -0
- /data/{vendor/gems/context/PostInstall.txt → lib/cloud_providers/default/helpers/base_helper.rb} +0 -0
- /data/vendor/gems/{colors → searchable_paths}/LICENSE +0 -0
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
puts "Using ruby #{RUBY_VERSION}p#{RUBY_PATCHLEVEL}"
|
|
2
|
-
|
|
3
|
-
require 'rubygems'
|
|
4
|
-
require 'rake/gempackagetask'
|
|
5
|
-
require 'rake/testtask'
|
|
6
|
-
begin
|
|
7
|
-
require 'rdoc/task'
|
|
8
|
-
rescue LoadError
|
|
9
|
-
puts "\nIt looks like you're using an old version of RDoc, but FakeWeb requires a newer one."
|
|
10
|
-
puts "You can try upgrading with `sudo gem install rdoc`.\n\n"
|
|
11
|
-
raise
|
|
12
|
-
end
|
|
13
|
-
|
|
14
|
-
task :default => :test
|
|
15
|
-
|
|
16
|
-
desc "Run All Tests"
|
|
17
|
-
Rake::TestTask.new :test do |test|
|
|
18
|
-
test.test_files = ["test/**/*.rb"]
|
|
19
|
-
test.verbose = false
|
|
20
|
-
end
|
|
21
|
-
|
|
22
|
-
desc "Generate Documentation"
|
|
23
|
-
RDoc::Task.new do |rdoc|
|
|
24
|
-
rdoc.main = "README.rdoc"
|
|
25
|
-
rdoc.rdoc_dir = "doc"
|
|
26
|
-
rdoc.rdoc_files.include("README.rdoc", "CHANGELOG", "LICENSE.txt", "lib/*.rb")
|
|
27
|
-
rdoc.title = "FakeWeb API Documentation"
|
|
28
|
-
rdoc.options << '--line-numbers' << '--charset' << 'utf-8'
|
|
29
|
-
end
|
|
30
|
-
|
|
31
|
-
desc %{Update ".manifest" with the latest list of project filenames. Respect\
|
|
32
|
-
.gitignore by excluding everything that git ignores. Update `files` and\
|
|
33
|
-
`test_files` arrays in "*.gemspec" file if it's present.}
|
|
34
|
-
task :manifest do
|
|
35
|
-
list = Dir['**/*'].sort
|
|
36
|
-
spec_file = Dir['*.gemspec'].first
|
|
37
|
-
list -= [spec_file] if spec_file
|
|
38
|
-
|
|
39
|
-
File.read('.gitignore').each_line do |glob|
|
|
40
|
-
glob = glob.chomp.sub(/^\//, '')
|
|
41
|
-
list -= Dir[glob]
|
|
42
|
-
list -= Dir["#{glob}/**/*"] if File.directory?(glob) and !File.symlink?(glob)
|
|
43
|
-
puts "excluding #{glob}"
|
|
44
|
-
end
|
|
45
|
-
|
|
46
|
-
if spec_file
|
|
47
|
-
spec = File.read spec_file
|
|
48
|
-
spec.gsub!(/^(\s* s.(test_)?files \s* = \s* )( \[ [^\]]* \] | %w\( [^)]* \) )/mx) do
|
|
49
|
-
assignment = $1
|
|
50
|
-
bunch = $2 ? list.grep(/^test\//) : list
|
|
51
|
-
'%s%%w(%s)' % [assignment, bunch.join(' ')]
|
|
52
|
-
end
|
|
53
|
-
|
|
54
|
-
File.open(spec_file, 'w') {|f| f << spec }
|
|
55
|
-
end
|
|
56
|
-
File.open('.manifest', 'w') {|f| f << list.join("\n") }
|
|
57
|
-
end
|
|
58
|
-
|
|
59
|
-
if RUBY_PLATFORM =~ /java/
|
|
60
|
-
puts "rcov support disabled (running under JRuby)."
|
|
61
|
-
elsif RUBY_VERSION =~ /^1\.9/
|
|
62
|
-
puts "rcov support disabled (running under Ruby 1.9)"
|
|
63
|
-
else
|
|
64
|
-
require 'rcov/rcovtask'
|
|
65
|
-
Rcov::RcovTask.new do |t|
|
|
66
|
-
t.test_files = FileList['test/**/test*.rb']
|
|
67
|
-
t.rcov_opts << "--sort coverage"
|
|
68
|
-
t.rcov_opts << "--exclude gems"
|
|
69
|
-
end
|
|
70
|
-
end
|
|
71
|
-
|
|
72
|
-
spec = eval(File.read(File.join(File.dirname(__FILE__), "fakeweb.gemspec")))
|
|
73
|
-
Rake::GemPackageTask.new(spec) do |pkg|
|
|
74
|
-
pkg.need_tar_gz = true
|
|
75
|
-
pkg.need_zip = true
|
|
76
|
-
end
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
Gem::Specification.new do |s|
|
|
2
|
-
s.name = "fakeweb"
|
|
3
|
-
s.version = "1.2.5"
|
|
4
|
-
s.date = "2009-07-08"
|
|
5
|
-
s.summary = "A tool for faking responses to HTTP requests"
|
|
6
|
-
s.description = "FakeWeb is a helper for faking web requests in Ruby. It works at a global level, without modifying code or writing extensive stubs."
|
|
7
|
-
s.homepage = "http://github.com/chrisk/fakeweb"
|
|
8
|
-
s.has_rdoc = true
|
|
9
|
-
s.authors = ["Chris Kampmeier", "Blaine Cook"]
|
|
10
|
-
s.email = ["chris@kampers.net", "romeda@gmail.com"]
|
|
11
|
-
s.files = %w(CHANGELOG LICENSE.txt README.rdoc Rakefile lib lib/fake_web lib/fake_web.rb lib/fake_web/ext lib/fake_web/ext/net_http.rb lib/fake_web/registry.rb lib/fake_web/responder.rb lib/fake_web/response.rb lib/fake_web/stub_socket.rb lib/fake_web/utility.rb lib/fakeweb.rb test test/fixtures test/fixtures/google_response_from_curl test/fixtures/google_response_with_transfer_encoding test/fixtures/google_response_without_transfer_encoding test/fixtures/test_example.txt test/fixtures/test_txt_file test/test_allow_net_connect.rb test/test_deprecations.rb test/test_fake_authentication.rb test/test_fake_web.rb test/test_fake_web_open_uri.rb test/test_helper.rb test/test_missing_open_uri.rb test/test_precedence.rb test/test_query_string.rb test/test_regexes.rb test/test_response_headers.rb test/test_trailing_slashes.rb test/test_utility.rb)
|
|
12
|
-
s.test_files = %w(test/fixtures test/fixtures/google_response_from_curl test/fixtures/google_response_with_transfer_encoding test/fixtures/google_response_without_transfer_encoding test/fixtures/test_example.txt test/fixtures/test_txt_file test/test_allow_net_connect.rb test/test_deprecations.rb test/test_fake_authentication.rb test/test_fake_web.rb test/test_fake_web_open_uri.rb test/test_helper.rb test/test_missing_open_uri.rb test/test_precedence.rb test/test_query_string.rb test/test_regexes.rb test/test_response_headers.rb test/test_trailing_slashes.rb test/test_utility.rb)
|
|
13
|
-
s.rdoc_options = ["--main", "README.rdoc",
|
|
14
|
-
"--title", "FakeWeb API Documentation",
|
|
15
|
-
"--charset", "utf-8",
|
|
16
|
-
"--line-numbers",
|
|
17
|
-
"--inline-source"]
|
|
18
|
-
s.extra_rdoc_files = ["CHANGELOG", "LICENSE.txt", "README.rdoc"]
|
|
19
|
-
s.rubyforge_project = "fakeweb"
|
|
20
|
-
s.add_development_dependency "mocha", ">= 0.9.5"
|
|
21
|
-
end
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
require 'net/http'
|
|
2
|
-
require 'net/https'
|
|
3
|
-
require 'stringio'
|
|
4
|
-
|
|
5
|
-
module Net #:nodoc: all
|
|
6
|
-
|
|
7
|
-
class BufferedIO
|
|
8
|
-
alias initialize_without_fakeweb initialize
|
|
9
|
-
def initialize(io, debug_output = nil)
|
|
10
|
-
@read_timeout = 60
|
|
11
|
-
@rbuf = ''
|
|
12
|
-
@debug_output = debug_output
|
|
13
|
-
|
|
14
|
-
@io = case io
|
|
15
|
-
when Socket, OpenSSL::SSL::SSLSocket, IO
|
|
16
|
-
io
|
|
17
|
-
when String
|
|
18
|
-
if !io.include?("\0") && File.exists?(io) && !File.directory?(io)
|
|
19
|
-
File.open(io, "r")
|
|
20
|
-
else
|
|
21
|
-
StringIO.new(io)
|
|
22
|
-
end
|
|
23
|
-
end
|
|
24
|
-
raise "Unable to create local socket" unless @io
|
|
25
|
-
end
|
|
26
|
-
end
|
|
27
|
-
|
|
28
|
-
class HTTP
|
|
29
|
-
class << self
|
|
30
|
-
alias socket_type_without_fakeweb socket_type
|
|
31
|
-
def socket_type
|
|
32
|
-
FakeWeb::StubSocket
|
|
33
|
-
end
|
|
34
|
-
end
|
|
35
|
-
|
|
36
|
-
alias request_without_fakeweb request
|
|
37
|
-
def request(request, body = nil, &block)
|
|
38
|
-
protocol = use_ssl? ? "https" : "http"
|
|
39
|
-
|
|
40
|
-
path = request.path
|
|
41
|
-
path = URI.parse(request.path).request_uri if request.path =~ /^http/
|
|
42
|
-
|
|
43
|
-
if request["authorization"] =~ /^Basic /
|
|
44
|
-
userinfo = FakeWeb::Utility.decode_userinfo_from_header(request["authorization"])
|
|
45
|
-
userinfo = FakeWeb::Utility.encode_unsafe_chars_in_userinfo(userinfo) + "@"
|
|
46
|
-
else
|
|
47
|
-
userinfo = ""
|
|
48
|
-
end
|
|
49
|
-
|
|
50
|
-
uri = "#{protocol}://#{userinfo}#{self.address}:#{self.port}#{path}"
|
|
51
|
-
method = request.method.downcase.to_sym
|
|
52
|
-
|
|
53
|
-
if FakeWeb.registered_uri?(method, uri)
|
|
54
|
-
@socket = Net::HTTP.socket_type.new
|
|
55
|
-
FakeWeb.response_for(method, uri, &block)
|
|
56
|
-
elsif FakeWeb.allow_net_connect?
|
|
57
|
-
connect_without_fakeweb
|
|
58
|
-
request_without_fakeweb(request, body, &block)
|
|
59
|
-
else
|
|
60
|
-
uri = FakeWeb::Utility.strip_default_port_from_uri(uri)
|
|
61
|
-
raise FakeWeb::NetConnectNotAllowedError,
|
|
62
|
-
"Real HTTP connections are disabled. Unregistered request: #{request.method} #{uri}"
|
|
63
|
-
end
|
|
64
|
-
end
|
|
65
|
-
|
|
66
|
-
alias connect_without_fakeweb connect
|
|
67
|
-
def connect
|
|
68
|
-
end
|
|
69
|
-
end
|
|
70
|
-
|
|
71
|
-
end
|
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
module FakeWeb
|
|
2
|
-
class Registry #:nodoc:
|
|
3
|
-
include Singleton
|
|
4
|
-
|
|
5
|
-
attr_accessor :uri_map
|
|
6
|
-
|
|
7
|
-
def initialize
|
|
8
|
-
clean_registry
|
|
9
|
-
end
|
|
10
|
-
|
|
11
|
-
def clean_registry
|
|
12
|
-
self.uri_map = Hash.new { |hash, key| hash[key] = {} }
|
|
13
|
-
end
|
|
14
|
-
|
|
15
|
-
def register_uri(method, uri, options)
|
|
16
|
-
uri_map[normalize_uri(uri)][method] = [*[options]].flatten.collect do |option|
|
|
17
|
-
FakeWeb::Responder.new(method, uri, option, option[:times])
|
|
18
|
-
end
|
|
19
|
-
end
|
|
20
|
-
|
|
21
|
-
def registered_uri?(method, uri)
|
|
22
|
-
normalized_uri = normalize_uri(uri)
|
|
23
|
-
!responses_for(method, uri).empty?
|
|
24
|
-
end
|
|
25
|
-
|
|
26
|
-
def response_for(method, uri, &block)
|
|
27
|
-
responses = responses_for(method, uri)
|
|
28
|
-
return nil if responses.empty?
|
|
29
|
-
|
|
30
|
-
next_response = responses.last
|
|
31
|
-
responses.each do |response|
|
|
32
|
-
if response.times and response.times > 0
|
|
33
|
-
response.times -= 1
|
|
34
|
-
next_response = response
|
|
35
|
-
break
|
|
36
|
-
end
|
|
37
|
-
end
|
|
38
|
-
|
|
39
|
-
next_response.response(&block)
|
|
40
|
-
end
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
private
|
|
44
|
-
|
|
45
|
-
def responses_for(method, uri)
|
|
46
|
-
uri = normalize_uri(uri)
|
|
47
|
-
|
|
48
|
-
if uri_map[uri].has_key?(method)
|
|
49
|
-
uri_map[uri][method]
|
|
50
|
-
elsif uri_map[uri].has_key?(:any)
|
|
51
|
-
uri_map[uri][:any]
|
|
52
|
-
elsif uri_map_matches?(method, uri)
|
|
53
|
-
uri_map_matches(method, uri)
|
|
54
|
-
elsif uri_map_matches(:any, uri)
|
|
55
|
-
uri_map_matches(:any, uri)
|
|
56
|
-
else
|
|
57
|
-
[]
|
|
58
|
-
end
|
|
59
|
-
end
|
|
60
|
-
|
|
61
|
-
def uri_map_matches?(method, uri)
|
|
62
|
-
!uri_map_matches(method, uri).nil?
|
|
63
|
-
end
|
|
64
|
-
|
|
65
|
-
def uri_map_matches(method, uri)
|
|
66
|
-
uri = normalize_uri(uri.to_s).to_s
|
|
67
|
-
uri = Utility.strip_default_port_from_uri(uri)
|
|
68
|
-
|
|
69
|
-
matches = uri_map.select { |registered_uri, method_hash|
|
|
70
|
-
registered_uri.is_a?(Regexp) && uri.match(registered_uri) && method_hash.has_key?(method)
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
if matches.size > 1
|
|
74
|
-
raise MultipleMatchingRegexpsError,
|
|
75
|
-
"More than one regular expression matched this request: #{method.to_s.upcase} #{uri}"
|
|
76
|
-
end
|
|
77
|
-
|
|
78
|
-
matches.map { |_, method_hash| method_hash[method] }.first
|
|
79
|
-
end
|
|
80
|
-
|
|
81
|
-
def normalize_uri(uri)
|
|
82
|
-
return uri if uri.is_a?(Regexp)
|
|
83
|
-
normalized_uri =
|
|
84
|
-
case uri
|
|
85
|
-
when URI then uri
|
|
86
|
-
when String
|
|
87
|
-
uri = 'http://' + uri unless uri.match('^https?://')
|
|
88
|
-
URI.parse(uri)
|
|
89
|
-
end
|
|
90
|
-
normalized_uri.query = sort_query_params(normalized_uri.query)
|
|
91
|
-
normalized_uri.normalize
|
|
92
|
-
end
|
|
93
|
-
|
|
94
|
-
def sort_query_params(query)
|
|
95
|
-
if query.nil? || query.empty?
|
|
96
|
-
nil
|
|
97
|
-
else
|
|
98
|
-
query.split('&').sort.join('&')
|
|
99
|
-
end
|
|
100
|
-
end
|
|
101
|
-
|
|
102
|
-
end
|
|
103
|
-
end
|
|
@@ -1,113 +0,0 @@
|
|
|
1
|
-
module FakeWeb
|
|
2
|
-
class Responder #:nodoc:
|
|
3
|
-
|
|
4
|
-
attr_accessor :method, :uri, :options, :times
|
|
5
|
-
KNOWN_OPTIONS = [:body, :exception, :response, :status].freeze
|
|
6
|
-
|
|
7
|
-
def initialize(method, uri, options, times)
|
|
8
|
-
self.method = method
|
|
9
|
-
self.uri = uri
|
|
10
|
-
self.options = options
|
|
11
|
-
self.times = times ? times : 1
|
|
12
|
-
|
|
13
|
-
if options.has_key?(:file) || options.has_key?(:string)
|
|
14
|
-
print_file_string_options_deprecation_warning
|
|
15
|
-
options[:body] = options.delete(:file) || options.delete(:string)
|
|
16
|
-
end
|
|
17
|
-
end
|
|
18
|
-
|
|
19
|
-
def response(&block)
|
|
20
|
-
if has_baked_response?
|
|
21
|
-
response = baked_response
|
|
22
|
-
else
|
|
23
|
-
code, msg = meta_information
|
|
24
|
-
response = Net::HTTPResponse.send(:response_class, code.to_s).new("1.0", code.to_s, msg)
|
|
25
|
-
response.instance_variable_set(:@body, body)
|
|
26
|
-
headers_extracted_from_options.each { |name, value| response[name] = value }
|
|
27
|
-
end
|
|
28
|
-
|
|
29
|
-
response.instance_variable_set(:@read, true)
|
|
30
|
-
response.extend FakeWeb::Response
|
|
31
|
-
|
|
32
|
-
optionally_raise(response)
|
|
33
|
-
|
|
34
|
-
yield response if block_given?
|
|
35
|
-
|
|
36
|
-
response
|
|
37
|
-
end
|
|
38
|
-
|
|
39
|
-
private
|
|
40
|
-
|
|
41
|
-
def headers_extracted_from_options
|
|
42
|
-
options.reject {|name, _| KNOWN_OPTIONS.include?(name) }.map { |name, value|
|
|
43
|
-
[name.to_s.split("_").map { |segment| segment.capitalize }.join("-"), value]
|
|
44
|
-
}
|
|
45
|
-
end
|
|
46
|
-
|
|
47
|
-
def body
|
|
48
|
-
return '' unless options.has_key?(:body)
|
|
49
|
-
|
|
50
|
-
if !options[:body].include?("\0") && File.exists?(options[:body]) && !File.directory?(options[:body])
|
|
51
|
-
File.read(options[:body])
|
|
52
|
-
else
|
|
53
|
-
options[:body]
|
|
54
|
-
end
|
|
55
|
-
end
|
|
56
|
-
|
|
57
|
-
def baked_response
|
|
58
|
-
resp = case options[:response]
|
|
59
|
-
when Net::HTTPResponse then options[:response]
|
|
60
|
-
when String
|
|
61
|
-
socket = Net::BufferedIO.new(options[:response])
|
|
62
|
-
r = Net::HTTPResponse.read_new(socket)
|
|
63
|
-
|
|
64
|
-
# Store the oiriginal transfer-encoding
|
|
65
|
-
saved_transfer_encoding = r.instance_eval {
|
|
66
|
-
@header['transfer-encoding'] if @header.key?('transfer-encoding')
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
# read the body of response.
|
|
70
|
-
r.instance_eval { @header['transfer-encoding'] = nil }
|
|
71
|
-
r.reading_body(socket, true) {}
|
|
72
|
-
|
|
73
|
-
# Delete the transfer-encoding key from r.@header if there wasn't one,
|
|
74
|
-
# else restore the saved_transfer_encoding.
|
|
75
|
-
if saved_transfer_encoding.nil?
|
|
76
|
-
r.instance_eval { @header.delete('transfer-encoding') }
|
|
77
|
-
else
|
|
78
|
-
r.instance_eval { @header['transfer-encoding'] = saved_transfer_encoding }
|
|
79
|
-
end
|
|
80
|
-
r
|
|
81
|
-
else raise StandardError, "Handler unimplemented for response #{options[:response]}"
|
|
82
|
-
end
|
|
83
|
-
end
|
|
84
|
-
|
|
85
|
-
def has_baked_response?
|
|
86
|
-
options.has_key?(:response)
|
|
87
|
-
end
|
|
88
|
-
|
|
89
|
-
def optionally_raise(response)
|
|
90
|
-
return unless options.has_key?(:exception)
|
|
91
|
-
|
|
92
|
-
case options[:exception].to_s
|
|
93
|
-
when "Net::HTTPError", "OpenURI::HTTPError"
|
|
94
|
-
raise options[:exception].new('Exception from FakeWeb', response)
|
|
95
|
-
else
|
|
96
|
-
raise options[:exception].new('Exception from FakeWeb')
|
|
97
|
-
end
|
|
98
|
-
end
|
|
99
|
-
|
|
100
|
-
def meta_information
|
|
101
|
-
options.has_key?(:status) ? options[:status] : [200, 'OK']
|
|
102
|
-
end
|
|
103
|
-
|
|
104
|
-
def print_file_string_options_deprecation_warning
|
|
105
|
-
which = options.has_key?(:file) ? :file : :string
|
|
106
|
-
$stderr.puts
|
|
107
|
-
$stderr.puts "Deprecation warning: FakeWeb's :#{which} option has been renamed to :body."
|
|
108
|
-
$stderr.puts "Just replace :#{which} with :body in your FakeWeb.register_uri calls."
|
|
109
|
-
$stderr.puts "Called at #{caller[6]}"
|
|
110
|
-
end
|
|
111
|
-
|
|
112
|
-
end
|
|
113
|
-
end
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
module FakeWeb
|
|
2
|
-
module Utility #:nodoc:
|
|
3
|
-
|
|
4
|
-
def self.decode_userinfo_from_header(header)
|
|
5
|
-
header.sub(/^Basic /, "").unpack("m").first
|
|
6
|
-
end
|
|
7
|
-
|
|
8
|
-
def self.encode_unsafe_chars_in_userinfo(userinfo)
|
|
9
|
-
unsafe_in_userinfo = /[^#{URI::REGEXP::PATTERN::UNRESERVED};&=+$,]|^(#{URI::REGEXP::PATTERN::ESCAPED})/
|
|
10
|
-
userinfo.split(":").map { |part| URI.escape(part, unsafe_in_userinfo) }.join(":")
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
def self.strip_default_port_from_uri(uri)
|
|
14
|
-
case uri
|
|
15
|
-
when %r{^http://} then uri.sub(%r{:80(/|$)}, '\1')
|
|
16
|
-
when %r{^https://} then uri.sub(%r{:443(/|$)}, '\1')
|
|
17
|
-
else uri
|
|
18
|
-
end
|
|
19
|
-
end
|
|
20
|
-
|
|
21
|
-
end
|
|
22
|
-
end
|
|
@@ -1,172 +0,0 @@
|
|
|
1
|
-
require 'singleton'
|
|
2
|
-
|
|
3
|
-
require 'fake_web/ext/net_http'
|
|
4
|
-
require 'fake_web/registry'
|
|
5
|
-
require 'fake_web/response'
|
|
6
|
-
require 'fake_web/responder'
|
|
7
|
-
require 'fake_web/stub_socket'
|
|
8
|
-
require 'fake_web/utility'
|
|
9
|
-
|
|
10
|
-
module FakeWeb
|
|
11
|
-
|
|
12
|
-
# Resets the FakeWeb Registry. This will force all subsequent web requests to
|
|
13
|
-
# behave as real requests.
|
|
14
|
-
def self.clean_registry
|
|
15
|
-
Registry.instance.clean_registry
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
# Enables or disables real HTTP connections for requests that don't match
|
|
19
|
-
# registered URIs.
|
|
20
|
-
#
|
|
21
|
-
# If you set <tt>FakeWeb.allow_net_connect = false</tt> and subsequently try
|
|
22
|
-
# to make a request to a URI you haven't registered with #register_uri, a
|
|
23
|
-
# NetConnectNotAllowedError will be raised. This is handy when you want to
|
|
24
|
-
# make sure your tests are self-contained, or want to catch the scenario
|
|
25
|
-
# when a URI is changed in implementation code without a corresponding test
|
|
26
|
-
# change.
|
|
27
|
-
#
|
|
28
|
-
# When <tt>FakeWeb.allow_net_connect = true</tt> (the default), requests to
|
|
29
|
-
# URIs not stubbed with FakeWeb are passed through to Net::HTTP.
|
|
30
|
-
def self.allow_net_connect=(allowed)
|
|
31
|
-
@allow_net_connect = allowed
|
|
32
|
-
end
|
|
33
|
-
|
|
34
|
-
# Enable pass-through to Net::HTTP by default.
|
|
35
|
-
self.allow_net_connect = true
|
|
36
|
-
|
|
37
|
-
# Returns +true+ if requests to URIs not registered with FakeWeb are passed
|
|
38
|
-
# through to Net::HTTP for normal processing (the default). Returns +false+
|
|
39
|
-
# if an exception is raised for these requests.
|
|
40
|
-
def self.allow_net_connect?
|
|
41
|
-
@allow_net_connect
|
|
42
|
-
end
|
|
43
|
-
|
|
44
|
-
# This exception is raised if you set <tt>FakeWeb.allow_net_connect =
|
|
45
|
-
# false</tt> and subsequently try to make a request to a URI you haven't
|
|
46
|
-
# stubbed.
|
|
47
|
-
class NetConnectNotAllowedError < StandardError; end;
|
|
48
|
-
|
|
49
|
-
# This exception is raised if a Net::HTTP request matches more than one of
|
|
50
|
-
# the regular expression-based stubs you've registered. To fix the problem,
|
|
51
|
-
# disambiguate the regular expressions by making them more specific.
|
|
52
|
-
class MultipleMatchingRegexpsError < StandardError; end;
|
|
53
|
-
|
|
54
|
-
# call-seq:
|
|
55
|
-
# FakeWeb.register_uri(method, uri, options)
|
|
56
|
-
#
|
|
57
|
-
# Register requests using the HTTP method specified by the symbol +method+
|
|
58
|
-
# for +uri+ to be handled according to +options+. If you specify the method
|
|
59
|
-
# <tt>:any</tt>, the response will be reigstered for any request for +uri+.
|
|
60
|
-
# +uri+ can be a +String+, +URI+, or +Regexp+ object. +options+ must be either
|
|
61
|
-
# a +Hash+ or an +Array+ of +Hashes+ (see below), which must contain one of
|
|
62
|
-
# these two keys:
|
|
63
|
-
#
|
|
64
|
-
# <tt>:body</tt>::
|
|
65
|
-
# A string which is used as the body of the response. If the string refers
|
|
66
|
-
# to a valid filesystem path, the contents of that file will be read and used
|
|
67
|
-
# as the body of the response instead. (This used to be two options,
|
|
68
|
-
# <tt>:string</tt> and <tt>:file</tt>, respectively. These are now deprecated.)
|
|
69
|
-
# <tt>:response</tt>::
|
|
70
|
-
# Either an <tt>Net::HTTPResponse</tt>, an +IO+, or a +String+ which is used
|
|
71
|
-
# as the full response for the request.
|
|
72
|
-
#
|
|
73
|
-
# The easier way by far is to pass the <tt>:response</tt> option to
|
|
74
|
-
# +register_uri+ as a +String+ or an (open for reads) +IO+ object which
|
|
75
|
-
# will be used as the complete HTTP response, including headers and body.
|
|
76
|
-
# If the string points to a readable file, this file will be used as the
|
|
77
|
-
# content for the request.
|
|
78
|
-
#
|
|
79
|
-
# To obtain a complete response document, you can use the +curl+ command,
|
|
80
|
-
# like so:
|
|
81
|
-
#
|
|
82
|
-
# curl -i http://www.example.com/ > response_for_www.example.com
|
|
83
|
-
#
|
|
84
|
-
# which can then be used in your test environment like so:
|
|
85
|
-
#
|
|
86
|
-
# FakeWeb.register_uri(:get, 'http://www.example.com/', :response => 'response_for_www.example.com')
|
|
87
|
-
#
|
|
88
|
-
# See the <tt>Net::HTTPResponse</tt>
|
|
89
|
-
# documentation[http://ruby-doc.org/stdlib/libdoc/net/http/rdoc/classes/Net/HTTPResponse.html]
|
|
90
|
-
# for more information on creating custom response objects.
|
|
91
|
-
#
|
|
92
|
-
# +options+ may also be an +Array+ containing a list of the above-described
|
|
93
|
-
# +Hash+. In this case, FakeWeb will rotate through each provided response,
|
|
94
|
-
# you may optionally provide:
|
|
95
|
-
#
|
|
96
|
-
# <tt>:times</tt>::
|
|
97
|
-
# The number of times this response will be used. Decremented by one each time it's called.
|
|
98
|
-
# FakeWeb will use the final provided request indefinitely, regardless of its :times parameter.
|
|
99
|
-
#
|
|
100
|
-
# Two optional arguments are also accepted:
|
|
101
|
-
#
|
|
102
|
-
# <tt>:status</tt>::
|
|
103
|
-
# Passing <tt>:status</tt> as a two-value array will set the response code
|
|
104
|
-
# and message. The defaults are <tt>200</tt> and <tt>OK</tt>, respectively.
|
|
105
|
-
# Example:
|
|
106
|
-
# FakeWeb.register_uri("http://www.example.com/", :body => "Go away!", :status => [404, "Not Found"])
|
|
107
|
-
# <tt>:exception</tt>::
|
|
108
|
-
# The argument passed via <tt>:exception</tt> will be raised when the
|
|
109
|
-
# specified URL is requested. Any +Exception+ class is valid. Example:
|
|
110
|
-
# FakeWeb.register_uri('http://www.example.com/', :exception => Net::HTTPError)
|
|
111
|
-
#
|
|
112
|
-
# If you're using the <tt>:body</tt> response type, you can pass additional
|
|
113
|
-
# options to specify the HTTP headers to be used in the response. Example:
|
|
114
|
-
#
|
|
115
|
-
# FakeWeb.register_uri(:get, "http://example.com/index.txt", :body => "Hello", :content_type => "text/plain")
|
|
116
|
-
def self.register_uri(*args)
|
|
117
|
-
case args.length
|
|
118
|
-
when 3
|
|
119
|
-
Registry.instance.register_uri(*args)
|
|
120
|
-
when 2
|
|
121
|
-
print_missing_http_method_deprecation_warning(*args)
|
|
122
|
-
Registry.instance.register_uri(:any, *args)
|
|
123
|
-
else
|
|
124
|
-
raise ArgumentError.new("wrong number of arguments (#{args.length} for 3)")
|
|
125
|
-
end
|
|
126
|
-
end
|
|
127
|
-
|
|
128
|
-
# call-seq:
|
|
129
|
-
# FakeWeb.response_for(method, uri)
|
|
130
|
-
#
|
|
131
|
-
# Returns the faked Net::HTTPResponse object associated with +method+ and +uri+.
|
|
132
|
-
def self.response_for(*args, &block) #:nodoc: :yields: response
|
|
133
|
-
case args.length
|
|
134
|
-
when 2
|
|
135
|
-
Registry.instance.response_for(*args, &block)
|
|
136
|
-
when 1
|
|
137
|
-
print_missing_http_method_deprecation_warning(*args)
|
|
138
|
-
Registry.instance.response_for(:any, *args, &block)
|
|
139
|
-
else
|
|
140
|
-
raise ArgumentError.new("wrong number of arguments (#{args.length} for 2)")
|
|
141
|
-
end
|
|
142
|
-
end
|
|
143
|
-
|
|
144
|
-
# call-seq:
|
|
145
|
-
# FakeWeb.registered_uri?(method, uri)
|
|
146
|
-
#
|
|
147
|
-
# Returns true if a +method+ request for +uri+ is registered with FakeWeb.
|
|
148
|
-
# Specify a method of <tt>:any</tt> to check for against all HTTP methods.
|
|
149
|
-
def self.registered_uri?(*args)
|
|
150
|
-
case args.length
|
|
151
|
-
when 2
|
|
152
|
-
Registry.instance.registered_uri?(*args)
|
|
153
|
-
when 1
|
|
154
|
-
print_missing_http_method_deprecation_warning(*args)
|
|
155
|
-
Registry.instance.registered_uri?(:any, *args)
|
|
156
|
-
else
|
|
157
|
-
raise ArgumentError.new("wrong number of arguments (#{args.length} for 2)")
|
|
158
|
-
end
|
|
159
|
-
end
|
|
160
|
-
|
|
161
|
-
private
|
|
162
|
-
|
|
163
|
-
def self.print_missing_http_method_deprecation_warning(*args)
|
|
164
|
-
method = caller.first.match(/`(.*?)'/)[1]
|
|
165
|
-
new_args = args.map { |a| a.inspect }.unshift(":any")
|
|
166
|
-
new_args.last.gsub!(/^\{|\}$/, "").gsub!("=>", " => ") if args.last.is_a?(Hash)
|
|
167
|
-
$stderr.puts
|
|
168
|
-
$stderr.puts "Deprecation warning: FakeWeb requires an HTTP method argument (or use :any). Try this:"
|
|
169
|
-
$stderr.puts " FakeWeb.#{method}(#{new_args.join(', ')})"
|
|
170
|
-
$stderr.puts "Called at #{caller[1]}"
|
|
171
|
-
end
|
|
172
|
-
end
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
HTTP/1.1 200 OK
|
|
2
|
-
Cache-Control: private, max-age=0
|
|
3
|
-
Date: Sun, 01 Feb 2009 02:16:24 GMT
|
|
4
|
-
Expires: -1
|
|
5
|
-
Content-Type: text/html; charset=ISO-8859-1
|
|
6
|
-
Set-Cookie: PREF=ID=a6d9b5f5a4056dfe:TM=1233454584:LM=1233454584:S=U9pSwSu4eQwOPenX; expires=Tue, 01-Feb-2011 02:16:24 GMT; path=/; domain=.google.com
|
|
7
|
-
Server: gws
|
|
8
|
-
Transfer-Encoding: chunked
|
|
9
|
-
|
|
10
|
-
<html><head><meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"><title>Google</title><script>var _gjwl=location;function _gjuc(){var a=_gjwl.hash;if(a.indexOf("&q=")>0||a.indexOf("#q=")>=0){a=a.substring(1);if(a.indexOf("#")==-1){for(var c=0;c<a.length;){var d=c;if(a.charAt(d)=="&")++d;var b=a.indexOf("&",d);if(b==-1)b=a.length;var e=a.substring(d,b);if(e.indexOf("fp=")==0){a=a.substring(0,c)+a.substring(b,a.length);b=c}else if(e=="cad=h")return 0;c=b}_gjwl.href="search?"+a+"&cad=h";return 1}}return 0};
|
|
11
|
-
window._gjuc && location.hash && _gjuc();</script><style>body,td,a,p,.h{font-family:arial,sans-serif}.h{color:#36c;font-size:20px}.q{color:#00c}.ts td{padding:0}.ts{border-collapse:collapse}#gbar{height:22px;padding-left:2px}.gbh,.gbd{border-top:1px solid #c9d7f1;font-size:1px}.gbh{height:0;position:absolute;top:24px;width:100%}#gbi,#gbs{background:#fff;left:0;position:absolute;top:24px;visibility:hidden;z-index:1000}#gbi{border:1px solid;border-color:#c9d7f1 #36c #36c #a2bae7;z-index:1001}#guser{padding-bottom:7px !important}#gbar,#guser{font-size:13px;padding-top:1px !important}@media all{.gb1,.gb3{height:22px;margin-right:.73em;vertical-align:top}#gbar{float:left}}.gb2{display:block;padding:.2em .5em}a.gb1,a.gb2,a.gb3{color:#00c !important}.gb2,.gb3{text-decoration:none}a.gb2:hover{background:#36c;color:#fff !important}</style><script>window.google={kEI:"-AWFSZ6qFYuUswO9j5HIDQ",kEXPI:"17259,19547",kHL:"en"};
|
|
12
|
-
google.y={};google.x=function(e,g){google.y[e.id]=[e,g];return false};window.gbar={};(function(){var b=window.gbar,f,h;b.qs=function(a){var c=window.encodeURIComponent&&(document.forms[0].q||"").value;if(c)a.href=a.href.replace(/([?&])q=[^&]*|$/,function(i,g){return(g||"&")+"q="+encodeURIComponent(c)})};function j(a,c){a.visibility=h?"hidden":"visible";a.left=c+"px"}b.tg=function(a){a=a||window.event;var c=0,i,g=window.navExtra,d=document.getElementById("gbi"),e=a.target||a.srcElement;a.cancelBubble=true;if(!f){f=document.createElement(Array.every||window.createPopup?"iframe":"div");f.frameBorder="0";f.src="#";d.parentNode.appendChild(f).id="gbs";if(g)for(i in g)d.insertBefore(g[i],d.firstChild).className="gb2";document.onclick=b.close}if(e.className!="gb3")e=e.parentNode;do c+=e.offsetLeft;while(e=e.offsetParent);j(d.style,c);f.style.width=d.offsetWidth+"px";f.style.height=d.offsetHeight+"px";j(f.style,c);h=!h};b.close=function(a){h&&b.tg(a)}})();</script></head><body bgcolor=#ffffff text=#000000 link=#0000cc vlink=#551a8b alink=#ff0000 onload="document.f.q.focus();if(document.images)new Image().src='/images/nav_logo3.png'" topmargin=3 marginheight=3><div id=gbar><nobr><b class=gb1>Web</b> <a href="http://images.google.com/imghp?hl=en&tab=wi" onclick=gbar.qs(this) class=gb1>Images</a> <a href="http://maps.google.com/maps?hl=en&tab=wl" onclick=gbar.qs(this) class=gb1>Maps</a> <a href="http://news.google.com/nwshp?hl=en&tab=wn" onclick=gbar.qs(this) class=gb1>News</a> <a href="http://www.google.com/prdhp?hl=en&tab=wf" onclick=gbar.qs(this) class=gb1>Shopping</a> <a href="http://mail.google.com/mail/?hl=en&tab=wm" class=gb1>Gmail</a> <a href="http://www.google.com/intl/en/options/" onclick="this.blur();gbar.tg(event);return !1" class=gb3><u>more</u> <small>▼</small></a><div id=gbi> <a href="http://video.google.com/?hl=en&tab=wv" onclick=gbar.qs(this) class=gb2>Video</a> <a href="http://groups.google.com/grphp?hl=en&tab=wg" onclick=gbar.qs(this) class=gb2>Groups</a> <a href="http://books.google.com/bkshp?hl=en&tab=wp" onclick=gbar.qs(this) class=gb2>Books</a> <a href="http://scholar.google.com/schhp?hl=en&tab=ws" onclick=gbar.qs(this) class=gb2>Scholar</a> <a href="http://finance.google.com/finance?hl=en&tab=we" onclick=gbar.qs(this) class=gb2>Finance</a> <a href="http://blogsearch.google.com/?hl=en&tab=wb" onclick=gbar.qs(this) class=gb2>Blogs</a> <div class=gb2><div class=gbd></div></div> <a href="http://www.youtube.com/?hl=en&tab=w1" onclick=gbar.qs(this) class=gb2>YouTube</a> <a href="http://www.google.com/calendar/render?hl=en&tab=wc" class=gb2>Calendar</a> <a href="http://picasaweb.google.com/home?hl=en&tab=wq" onclick=gbar.qs(this) class=gb2>Photos</a> <a href="http://docs.google.com/?hl=en&tab=wo" class=gb2>Documents</a> <a href="http://www.google.com/reader/view/?hl=en&tab=wy" class=gb2>Reader</a> <a href="http://sites.google.com/?hl=en&tab=w3" class=gb2>Sites</a> <div class=gb2><div class=gbd></div></div> <a href="http://www.google.com/intl/en/options/" class=gb2>even more »</a></div> </nobr></div><div class=gbh style=left:0></div><div class=gbh style=right:0></div><div align=right id=guser style="font-size:84%;padding:0 0 4px" width=100%><nobr><a href="/url?sa=p&pref=ig&pval=3&q=http://www.google.com/ig%3Fhl%3Den%26source%3Diglk&usg=AFQjCNFA18XPfgb7dKnXfKz7x7g1GDH1tg">iGoogle</a> | <a href="https://www.google.com/accounts/Login?continue=http://www.google.com/&hl=en">Sign in</a></nobr></div><center><br clear=all id=lgpd><img alt="Google" height=110 src="/intl/en_ALL/images/logo.gif" width=276><br><br><form action="/search" name=f><table cellpadding=0 cellspacing=0><tr valign=top><td width=25%> </td><td align=center nowrap><input name=hl type=hidden value=en><input type=hidden name=ie value="ISO-8859-1"><input autocomplete="off" maxlength=2048 name=q size=55 title="Google Search" value=""><br><input name=btnG type=submit value="Google Search"><input name=btnI type=submit value="I'm Feeling Lucky"></td><td nowrap width=25%><font size=-2> <a href=/advanced_search?hl=en>Advanced Search</a><br> <a href=/preferences?hl=en>Preferences</a><br> <a href=/language_tools?hl=en>Language Tools</a></font></td></tr></table></form><br><font size=-1>Share what you know. <a href="/aclk?sa=L&ai=CYhslHwSFSZH6LIHusAPEsc2eBfv77nqP3YC9CsHZnNkTEAEgwVRQypDftPn_____AWDJBqoECU_QbUVlfOdxZw&num=1&sig=AGiWqtwRgqw8y_kza6RGKxBrCstaXkDJ7A&q=http://knol.google.com">Write a Knol</a>.</font><br><br><br><font size=-1><a href="/intl/en/ads/">Advertising Programs</a> - <a href="/services/">Business Solutions</a> - <a href="/intl/en/about.html">About Google</a></font><p><font size=-2>©2009 - <a href="/intl/en/privacy.html">Privacy</a></font></p></center></body><script>if(google.y)google.y.first=[];window.setTimeout(function(){var xjs=document.createElement('script');xjs.src='/extern_js/f/CgJlbhICdXMgACswCjgVLCswDjgELCswGDgDLA/L3N5xu59nDE.js';document.getElementsByTagName('head')[0].appendChild(xjs)},0);google.y.first.push(function(){google.ac.i(document.f,document.f.q,'','')})</script><script>function _gjp() {!(location.hash && _gjuc()) && setTimeout(_gjp, 500);}window._gjuc && _gjp();</script></html>
|