canalizador 0.4.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 40af2181b37ab4da25f1ff3ea483ce8f236782be70ec47b1ca6e37ddac8f14f2
4
- data.tar.gz: 13903f944766966d870563bff745f17f6b1ced1dcb16e4ac6453e93c31d49040
3
+ metadata.gz: c4547c8de991b458c7805fafd7442f332443aa03ebc24074be070f89075a8f66
4
+ data.tar.gz: ca2376a1bfafaa49acc6725f5cdd396112001bd5b8a0bd5b3ebf7020f0edacb3
5
5
  SHA512:
6
- metadata.gz: 70dc5f7f325bf51e9114977856a1a208a7826390bd9c12d578d18b99af74d45f9d0a44f9ec93a85508ef6b8340f4903b727aafe1a12322c126d9cc1046828423
7
- data.tar.gz: f244dcad73db3ccd5664d0a2594834464bb4de957b3c8c16c4f00b22ed75794d76321661fe5b513f885454924b8146dd7809a5438ad0ab28b7793229e9175ac6
6
+ metadata.gz: d6c6f8f67cbe14ea8b858ecfbb853d0c508ada5d83c8e7d920c7a4111ee62a28e9a8cb0b957ba9a5b9ae7f3a551d19065402335265c0d9d60f2b40b5f8740212
7
+ data.tar.gz: 509b252d5961cac1cf5d26956dd67f0a55e7f51df2196a0448b5559413df618fe5bd9d7ebcf1f537994ee49f3d56bd274164bb68926bacc31dcbaf4c301b6731
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'fastlane'
3
+ require 'match'
4
4
 
5
5
  require_relative 'utils'
6
6
 
@@ -72,10 +72,36 @@ module Canalizador
72
72
  'IOS_PROFILES_AND_CERTIFICATES_REPO_URL',
73
73
  'MATCH_PASSWORD'
74
74
  )
75
-
76
- match(git_url: ENV['IOS_PROFILES_AND_CERTIFICATES_REPO_URL'], app_identifier: app_bundle_ids, type: 'development', readonly: true, generate_apple_certs: false)
77
- match(git_url: ENV['IOS_PROFILES_AND_CERTIFICATES_REPO_URL'], app_identifier: app_bundle_ids, type: 'adhoc', readonly: true, generate_apple_certs: false)
78
- match(git_url: ENV['IOS_PROFILES_AND_CERTIFICATES_REPO_URL'], app_identifier: app_bundle_ids, type: 'appstore', readonly: true, generate_apple_certs: false)
75
+
76
+ git_url = ENV['IOS_PROFILES_AND_CERTIFICATES_REPO_URL']
77
+
78
+ Match::Runner.new.run(
79
+ storage_mode: 'git',
80
+ git_url: git_url,
81
+ git_branch: 'master',
82
+ app_identifier: app_bundle_ids,
83
+ type: 'development',
84
+ readonly: true,
85
+ keychain_name: 'login.keychain'
86
+ )
87
+ Match::Runner.new.run(
88
+ storage_mode: 'git',
89
+ git_url: git_url,
90
+ git_branch: 'master',
91
+ app_identifier: app_bundle_ids,
92
+ type: 'adhoc',
93
+ readonly: true,
94
+ keychain_name: 'login.keychain'
95
+ )
96
+ Match::Runner.new.run(
97
+ storage_mode: 'git',
98
+ git_url: git_url,
99
+ git_branch: 'master',
100
+ app_identifier: app_bundle_ids,
101
+ type: 'appstore',
102
+ readonly: true,
103
+ keychain_name: 'login.keychain'
104
+ )
79
105
  end
80
106
  end
81
107
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Canalizador
4
- VERSION = '0.4.0'
4
+ VERSION = '0.6.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: canalizador
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gaspard+Bruno
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-29 00:00:00.000000000 Z
11
+ date: 2023-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dotenv