Class: Shenzhen::Plugins::S3::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/shenzhen/plugins/s3.rb

Instance Method Summary collapse

Constructor Details

#initialize(access_key_id, secret_access_key, region) ⇒ Client

Returns a new instance of Client.



6
7
8
9
10
# File 'lib/shenzhen/plugins/s3.rb', line 6

def initialize(access_key_id, secret_access_key, region)
  @s3 = AWS::S3.new(:access_key_id => access_key_id,
    :secret_access_key => secret_access_key,
    :region => region)
end

Instance Method Details

#upload_build(ipa, options) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/shenzhen/plugins/s3.rb', line 12

def upload_build(ipa, options)
  path = expand_path_with_substitutions_from_ipa_plist(ipa, options[:path])

  @s3.buckets.create(options[:bucket]) if options[:create]

  bucket = @s3.buckets[options[:bucket]]

  files = []
  files << ipa
  files << options[:dsym]
  files.each do |file|
    key = File.join(path, File.basename(file))
    File.open(file) do |descriptor|
      bucket.objects.create(key, descriptor, :acl => options[:acl])
    end
  end
end