├── .gitignore ├── Changelog.md ├── Gemfile ├── LICENSE ├── Rakefile ├── capify-ec2.gemspec ├── lib ├── capify-ec2.rb └── capify-ec2 │ ├── capistrano.rb │ ├── cloudwatch.rb │ ├── server.rb │ └── version.rb └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | Gemfile.lock 4 | pkg/* 5 | .idea 6 | -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forward/capify-ec2/HEAD/Changelog.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forward/capify-ec2/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forward/capify-ec2/HEAD/LICENSE -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forward/capify-ec2/HEAD/Rakefile -------------------------------------------------------------------------------- /capify-ec2.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forward/capify-ec2/HEAD/capify-ec2.gemspec -------------------------------------------------------------------------------- /lib/capify-ec2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forward/capify-ec2/HEAD/lib/capify-ec2.rb -------------------------------------------------------------------------------- /lib/capify-ec2/capistrano.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forward/capify-ec2/HEAD/lib/capify-ec2/capistrano.rb -------------------------------------------------------------------------------- /lib/capify-ec2/cloudwatch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forward/capify-ec2/HEAD/lib/capify-ec2/cloudwatch.rb -------------------------------------------------------------------------------- /lib/capify-ec2/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forward/capify-ec2/HEAD/lib/capify-ec2/server.rb -------------------------------------------------------------------------------- /lib/capify-ec2/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forward/capify-ec2/HEAD/lib/capify-ec2/version.rb -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forward/capify-ec2/HEAD/readme.md --------------------------------------------------------------------------------