Class: Deploy::S3::Platform
- Inherits:
-
Object
- Object
- Deploy::S3::Platform
- Defined in:
- lib/deploy/s3/platform.rb
Instance Method Summary collapse
- #deploy! ⇒ Object
-
#initialize(opts) ⇒ Platform
constructor
A new instance of Platform.
Constructor Details
#initialize(opts) ⇒ Platform
Returns a new instance of Platform.
4 5 6 7 |
# File 'lib/deploy/s3/platform.rb', line 4 def initialize(opts) @s3 = opts[:s3] @tag = opts[:tag] end |
Instance Method Details
#deploy! ⇒ Object
9 10 11 12 |
# File 'lib/deploy/s3/platform.rb', line 9 def deploy! # TODO: Add option to re-use existing deployment if we can s3_deploy! end |