├── .gitignore ├── Gemfile ├── README.markdown ├── Rakefile ├── aws.gemspec ├── lib ├── acf │ └── acf_interface.rb ├── aws.rb ├── awsbase │ ├── aws_response_array.rb │ ├── awsbase.rb │ ├── benchmark_fix.rb │ ├── errors.rb │ ├── parsers.rb │ ├── require_relative.rb │ └── utils.rb ├── ec2 │ ├── ec2.rb │ └── mon_interface.rb ├── elb │ └── elb_interface.rb ├── iam │ └── iam.rb ├── rds │ └── rds.rb ├── right_aws.rb ├── s3 │ ├── bucket.rb │ ├── grantee.rb │ ├── key.rb │ ├── s3.rb │ └── s3_interface.rb ├── sdb │ ├── active_sdb.rb │ └── sdb_interface.rb ├── ses │ └── ses.rb ├── sqs │ ├── sqs.rb │ └── sqs_interface.rb └── version.rb └── test ├── acf ├── test_acf.rb └── test_helper.rb ├── ec2 ├── test_ec2.rb ├── test_helper.rb └── test_mon.rb ├── elb └── test_elb.rb ├── http_connection.rb ├── iam └── test_iam.rb ├── rds └── test_rds.rb ├── s3 ├── s3_test_base.rb ├── test_helper.rb ├── test_s3.rb ├── test_s3_class.rb ├── test_s3_rights.rb └── test_s3_stubbed.rb ├── sdb ├── test_helper.rb ├── test_sdb.rb └── unicode.txt ├── ses └── test_ses.rb ├── sqs ├── test_helper.rb └── test_sqs.rb └── test_credentials.rb /.gitignore: -------------------------------------------------------------------------------- 1 | /.project 2 | pkg 3 | .idea 4 | Gemfile.lock 5 | .bundle 6 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/Gemfile -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/Rakefile -------------------------------------------------------------------------------- /aws.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/aws.gemspec -------------------------------------------------------------------------------- /lib/acf/acf_interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/acf/acf_interface.rb -------------------------------------------------------------------------------- /lib/aws.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/aws.rb -------------------------------------------------------------------------------- /lib/awsbase/aws_response_array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/awsbase/aws_response_array.rb -------------------------------------------------------------------------------- /lib/awsbase/awsbase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/awsbase/awsbase.rb -------------------------------------------------------------------------------- /lib/awsbase/benchmark_fix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/awsbase/benchmark_fix.rb -------------------------------------------------------------------------------- /lib/awsbase/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/awsbase/errors.rb -------------------------------------------------------------------------------- /lib/awsbase/parsers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/awsbase/parsers.rb -------------------------------------------------------------------------------- /lib/awsbase/require_relative.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/awsbase/require_relative.rb -------------------------------------------------------------------------------- /lib/awsbase/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/awsbase/utils.rb -------------------------------------------------------------------------------- /lib/ec2/ec2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/ec2/ec2.rb -------------------------------------------------------------------------------- /lib/ec2/mon_interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/ec2/mon_interface.rb -------------------------------------------------------------------------------- /lib/elb/elb_interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/elb/elb_interface.rb -------------------------------------------------------------------------------- /lib/iam/iam.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/iam/iam.rb -------------------------------------------------------------------------------- /lib/rds/rds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/rds/rds.rb -------------------------------------------------------------------------------- /lib/right_aws.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/right_aws.rb -------------------------------------------------------------------------------- /lib/s3/bucket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/s3/bucket.rb -------------------------------------------------------------------------------- /lib/s3/grantee.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/s3/grantee.rb -------------------------------------------------------------------------------- /lib/s3/key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/s3/key.rb -------------------------------------------------------------------------------- /lib/s3/s3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/s3/s3.rb -------------------------------------------------------------------------------- /lib/s3/s3_interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/s3/s3_interface.rb -------------------------------------------------------------------------------- /lib/sdb/active_sdb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/sdb/active_sdb.rb -------------------------------------------------------------------------------- /lib/sdb/sdb_interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/sdb/sdb_interface.rb -------------------------------------------------------------------------------- /lib/ses/ses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/ses/ses.rb -------------------------------------------------------------------------------- /lib/sqs/sqs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/sqs/sqs.rb -------------------------------------------------------------------------------- /lib/sqs/sqs_interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/lib/sqs/sqs_interface.rb -------------------------------------------------------------------------------- /lib/version.rb: -------------------------------------------------------------------------------- 1 | module Aws 2 | VERSION = "2.10.2" 3 | end 4 | -------------------------------------------------------------------------------- /test/acf/test_acf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/test/acf/test_acf.rb -------------------------------------------------------------------------------- /test/acf/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/test/acf/test_helper.rb -------------------------------------------------------------------------------- /test/ec2/test_ec2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/test/ec2/test_ec2.rb -------------------------------------------------------------------------------- /test/ec2/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/test/ec2/test_helper.rb -------------------------------------------------------------------------------- /test/ec2/test_mon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/test/ec2/test_mon.rb -------------------------------------------------------------------------------- /test/elb/test_elb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/test/elb/test_elb.rb -------------------------------------------------------------------------------- /test/http_connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/test/http_connection.rb -------------------------------------------------------------------------------- /test/iam/test_iam.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/test/iam/test_iam.rb -------------------------------------------------------------------------------- /test/rds/test_rds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/test/rds/test_rds.rb -------------------------------------------------------------------------------- /test/s3/s3_test_base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/test/s3/s3_test_base.rb -------------------------------------------------------------------------------- /test/s3/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/test/s3/test_helper.rb -------------------------------------------------------------------------------- /test/s3/test_s3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/test/s3/test_s3.rb -------------------------------------------------------------------------------- /test/s3/test_s3_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/test/s3/test_s3_class.rb -------------------------------------------------------------------------------- /test/s3/test_s3_rights.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/test/s3/test_s3_rights.rb -------------------------------------------------------------------------------- /test/s3/test_s3_stubbed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/test/s3/test_s3_stubbed.rb -------------------------------------------------------------------------------- /test/sdb/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/test/sdb/test_helper.rb -------------------------------------------------------------------------------- /test/sdb/test_sdb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/test/sdb/test_sdb.rb -------------------------------------------------------------------------------- /test/sdb/unicode.txt: -------------------------------------------------------------------------------- 1 | Helmut Fischer GmbH Institut für Elektronik und Messtechnik 2 | -------------------------------------------------------------------------------- /test/ses/test_ses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/test/ses/test_ses.rb -------------------------------------------------------------------------------- /test/sqs/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/test/sqs/test_helper.rb -------------------------------------------------------------------------------- /test/sqs/test_sqs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/test/sqs/test_sqs.rb -------------------------------------------------------------------------------- /test/test_credentials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appoxy/aws/HEAD/test/test_credentials.rb --------------------------------------------------------------------------------