apple_certs_info 0.1.7 → 0.1.8
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/Gemfile.lock +1 -1
- data/lib/apple_certs_info.rb +2 -2
- data/lib/apple_certs_info/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: af7f8229f8689f9d7a2f36440999dde63b2a46c9e4429288765e3e4559b3ade8
|
|
4
|
+
data.tar.gz: ff41a08af497ea80f00f7cc29dd2d4b760d84fb48c2d8a7051b0b17c3c1af002
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7a5dacb311d712650309fdab78945c01fcbd245de49fdf75e72762e3111b6a792e2b6d70cc996ae7b7aa4836c2a2195f72f3653e7330a78b3a527a9c4bbf9af8
|
|
7
|
+
data.tar.gz: 9b21b435a7bb05be3999187bec9c09fe96ef5c95df7438b22f968d85dd2a4188a4d7f69e3cb7dd17e17feeb5a9c3b72a14113d7b516519fbecdf24f3a4a51c0a
|
data/Gemfile.lock
CHANGED
data/lib/apple_certs_info.rb
CHANGED
|
@@ -38,7 +38,7 @@ module AppleCertsInfo
|
|
|
38
38
|
apple_list = certificate_list_for(name: "Apple Development")
|
|
39
39
|
list.concat(iphone_list)
|
|
40
40
|
list.concat(apple_list)
|
|
41
|
-
return list
|
|
41
|
+
return list.uniq
|
|
42
42
|
end
|
|
43
43
|
|
|
44
44
|
def self.certificate_distribution_list
|
|
@@ -47,7 +47,7 @@ module AppleCertsInfo
|
|
|
47
47
|
apple_list = certificate_list_for(name: "Apple Distribution")
|
|
48
48
|
list.concat(iphone_list)
|
|
49
49
|
list.concat(apple_list)
|
|
50
|
-
return list
|
|
50
|
+
return list.uniq
|
|
51
51
|
end
|
|
52
52
|
|
|
53
53
|
def self.certificate_info_for(name:)
|