canalizador 0.3.0 → 0.5.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: 7d71ce72de8a6fe1013faf8e5a9d7717b54dd4137eb624b85cce0172fdb59d41
4
- data.tar.gz: 5125e3cdc587bb96d7fb316e32907be191596768c645abb99b00d25795ba0591
3
+ metadata.gz: 11b13d876023462bb2bb63f3b1704ce49bbea70b5bf15354a17a23c88f0b0c26
4
+ data.tar.gz: e7ae4866ada4e455e6908c29286e9644843cddc11eb5c5aadff3b1533ec1302b
5
5
  SHA512:
6
- metadata.gz: 282a14886eaa8f500703c66339516c46c5b9694257d5713135342e7942e83a05ba511c4a0a5e5505fa1272695b217ad8e62c39b78af3a1c4e23bf38fc35a8641
7
- data.tar.gz: a973bde7b283ca8b5d09e64e4e5e89fe2f5fe2851492ce6b104f4fd247e8bee90174da16af93dd3b4f02de2ba38f80618b8f6f7f1bf9911f876b40a8fb2dae20
6
+ metadata.gz: f9b788a334b91bea46940f7556d3d70bf905ea1599888e796e230d4468fbab24d0a37ef5dd54c09de25e94938718654d02eba325411be57137d2427e3f2b685e
7
+ data.tar.gz: b99fe99f817c513791ef58e1709e184880eaaddc3a645089b5500b8276bd918e18720d4729b77f558a733da4a5cd504054db5a2ff08f1186d3b45fbe93d21c8d
@@ -72,10 +72,33 @@ 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
+ )
86
+ Match::Runner.new.run(
87
+ storage_mode: 'git',
88
+ git_url: git_url,
89
+ git_branch: 'master',
90
+ app_identifier: app_bundle_ids,
91
+ type: 'adhoc',
92
+ readonly: true
93
+ )
94
+ Match::Runner.new.run(
95
+ storage_mode: 'git',
96
+ git_url: git_url,
97
+ git_branch: 'master',
98
+ app_identifier: app_bundle_ids,
99
+ type: 'appstore',
100
+ readonly: true
101
+ )
79
102
  end
80
103
  end
81
104
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Canalizador
4
- VERSION = '0.3.0'
4
+ VERSION = '0.5.0'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: canalizador
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gaspard+Bruno