Class: Fastlane::MatchImport::Encryption::OpenSSL

Inherits:
Match::Encryption::OpenSSL
  • Object
show all
Defined in:
lib/fastlane/plugin/match_import/encryption/openssl.rb

Instance Method Summary collapse

Instance Method Details

#iterate(source_path) ⇒ Object



7
8
9
10
11
12
13
14
# File 'lib/fastlane/plugin/match_import/encryption/openssl.rb', line 7

def iterate(source_path)
  super
  # apns *.cer and *.p12 are encrypted/decrypted by 'super' call
  Dir[File.join(source_path, "customImport/customImport/customImport", "custom", "**", "*")].each do |path|
    next if File.directory?(path)
    yield(path)
  end
end