match 0.4.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 +4 -4
- data/bin/match +10 -0
- data/lib/match/generator.rb +4 -2
- data/lib/match/version.rb +1 -1
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c3331622bdfb12e51b9a0108c54d6c3447daafe7
|
4
|
+
data.tar.gz: 436dc1400d5ba67b84b6f809e970bfafd190b464
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd0ec61a08238e00d7740ae0fedaa3641f69f89522de04d317d00fcccb62277741f0b7445bc33f7c0a1ef3a479e8e1b716837f62384069bf022009b8bb487a40
|
7
|
+
data.tar.gz: 462bcc66bad561c3c4f79878791d36f4db9ec72e752c8caf3b1c8bb4c6ced2227f499f70c8723fef691e9d63bfa2fc352ea860bc71aa26285002dd643089123e
|
data/bin/match
CHANGED
@@ -82,6 +82,16 @@ class MatchApplication
|
|
82
82
|
end
|
83
83
|
end
|
84
84
|
|
85
|
+
command :decrypt do |c|
|
86
|
+
c.syntax = "match decrypt"
|
87
|
+
c.description = "Decrypts the repository and keeps it on the filesystem"
|
88
|
+
c.action do |args, options|
|
89
|
+
params = FastlaneCore::Configuration.create(Match::Options.available_options, options.__hash__)
|
90
|
+
params.load_configuration_file("Matchfile")
|
91
|
+
decrypted_repo = Match::GitHelper.clone(params[:git_url], params[:shallow_clone])
|
92
|
+
UI.success "Repo is at: '#{decrypted_repo}'"
|
93
|
+
end
|
94
|
+
end
|
85
95
|
command "nuke" do |c|
|
86
96
|
# We have this empty command here, since otherwise the normal `match` command will be executed
|
87
97
|
c.syntax = "match nuke"
|
data/lib/match/generator.rb
CHANGED
@@ -9,7 +9,8 @@ module Match
|
|
9
9
|
development: params[:type] == "development",
|
10
10
|
output_path: output_path,
|
11
11
|
force: true, # we don't need a certificate without its private key, we only care about a new certificate
|
12
|
-
username: params[:username]
|
12
|
+
username: params[:username],
|
13
|
+
team_id: params[:team_id]
|
13
14
|
})
|
14
15
|
|
15
16
|
Cert.config = arguments
|
@@ -48,7 +49,8 @@ module Match
|
|
48
49
|
force: true,
|
49
50
|
cert_id: certificate_id,
|
50
51
|
provisioning_name: profile_name,
|
51
|
-
ignore_profiles_with_different_name: true
|
52
|
+
ignore_profiles_with_different_name: true,
|
53
|
+
team_id: params[:team_id]
|
52
54
|
})
|
53
55
|
|
54
56
|
Sigh.config = arguments
|
data/lib/match/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: match
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-04-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: security
|
@@ -166,6 +166,20 @@ dependencies:
|
|
166
166
|
- - "~>"
|
167
167
|
- !ruby/object:Gem::Version
|
168
168
|
version: 3.1.0
|
169
|
+
- !ruby/object:Gem::Dependency
|
170
|
+
name: rspec_junit_formatter
|
171
|
+
requirement: !ruby/object:Gem::Requirement
|
172
|
+
requirements:
|
173
|
+
- - "~>"
|
174
|
+
- !ruby/object:Gem::Version
|
175
|
+
version: 0.2.3
|
176
|
+
type: :development
|
177
|
+
prerelease: false
|
178
|
+
version_requirements: !ruby/object:Gem::Requirement
|
179
|
+
requirements:
|
180
|
+
- - "~>"
|
181
|
+
- !ruby/object:Gem::Version
|
182
|
+
version: 0.2.3
|
169
183
|
- !ruby/object:Gem::Dependency
|
170
184
|
name: pry
|
171
185
|
requirement: !ruby/object:Gem::Requirement
|