match 0.6.0 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -1
- data/lib/match/git_helper.rb +1 -0
- data/lib/match/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 69d2b22f33191556e2c6caaebe82df73bae38497
|
4
|
+
data.tar.gz: a448b4d6c7473b3eabf4bf7ca80151c213f53d59
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 68d99ff49f1251c43ba757ba3e1517b3f888564ad3999c06d559d1397a3043450e39d94e84b16ea6fdebec75f3496214771643493f50680d199e7f8216813a93
|
7
|
+
data.tar.gz: 9a82844f1676f5b6ba818424198b70643d3b2e4685115861b3f16f63fd4e202d375e1877bfbd7f8456595e3b635e0d08cd69d465e681f201a4ed0a75de63221b
|
data/README.md
CHANGED
@@ -130,7 +130,12 @@ username "user@fastlane.tools"
|
|
130
130
|
|
131
131
|
#### Important: Use one git branch per team
|
132
132
|
|
133
|
-
`match`
|
133
|
+
`match` also supports storing certificates of multiple teams in one repo, by using separate git branches. If you work in multiple teams, make sure to set the `git_branch` parameter to a unique value per team. From there, `match` will automatically create and use the specified branch for you.
|
134
|
+
|
135
|
+
```ruby
|
136
|
+
match(git_branch: "team1", username: "user@team1.com")
|
137
|
+
match(git_branch: "team2", username: "user@team2.com")
|
138
|
+
```
|
134
139
|
|
135
140
|
### Run
|
136
141
|
|
data/lib/match/git_helper.rb
CHANGED
@@ -19,6 +19,7 @@ module Match
|
|
19
19
|
if !Helper.test? and GitHelper.match_version(@dir).nil? and manual_password.nil? and File.exist?(File.join(@dir, "README.md"))
|
20
20
|
UI.important "Migrating to new match..."
|
21
21
|
ChangePassword.update(params: { git_url: git_url,
|
22
|
+
git_branch: branch,
|
22
23
|
shallow_clone: shallow_clone },
|
23
24
|
from: "",
|
24
25
|
to: Encrypt.new.password(git_url))
|
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.6.
|
4
|
+
version: 0.6.1
|
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-05-
|
11
|
+
date: 2016-05-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: security
|
@@ -311,7 +311,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
311
311
|
version: '0'
|
312
312
|
requirements: []
|
313
313
|
rubyforge_project:
|
314
|
-
rubygems_version: 2.4.
|
314
|
+
rubygems_version: 2.4.8
|
315
315
|
signing_key:
|
316
316
|
specification_version: 4
|
317
317
|
summary: Easily sync your certificates and profiles across your team using git
|