Class: Deploy::S3::Platform

Inherits:
Object
  • Object
show all
Defined in:
lib/deploy/s3/platform.rb

Instance Method Summary collapse

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