├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── aws-creds.gemspec ├── bin └── awc ├── lib └── aws │ ├── creds.rb │ └── creds │ ├── keypair.rb │ ├── store.rb │ └── version.rb └── test └── test_keypairs.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/gem-aws-creds/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/gem-aws-creds/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/gem-aws-creds/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/gem-aws-creds/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/gem-aws-creds/HEAD/Rakefile -------------------------------------------------------------------------------- /aws-creds.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/gem-aws-creds/HEAD/aws-creds.gemspec -------------------------------------------------------------------------------- /bin/awc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/gem-aws-creds/HEAD/bin/awc -------------------------------------------------------------------------------- /lib/aws/creds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/gem-aws-creds/HEAD/lib/aws/creds.rb -------------------------------------------------------------------------------- /lib/aws/creds/keypair.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/gem-aws-creds/HEAD/lib/aws/creds/keypair.rb -------------------------------------------------------------------------------- /lib/aws/creds/store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/gem-aws-creds/HEAD/lib/aws/creds/store.rb -------------------------------------------------------------------------------- /lib/aws/creds/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/gem-aws-creds/HEAD/lib/aws/creds/version.rb -------------------------------------------------------------------------------- /test/test_keypairs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbnb/gem-aws-creds/HEAD/test/test_keypairs.rb --------------------------------------------------------------------------------