mobile_provision 1.1.1 → 2.0.1
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 +5 -5
- data/Gemfile.lock +34 -23
- data/README.md +21 -5
- data/lib/mobile_provision/representation.rb +24 -5
- data/lib/mobile_provision/version.rb +1 -1
- data/mobile_provision.gemspec +4 -4
- metadata +13 -15
- data/mobile_provision-1.1.0.gem +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: c17dcc97bbffbff1149b30ff61a7c41e5ca5a96af7267b3a3d82b223950c3e49
|
4
|
+
data.tar.gz: 1233c90d6f77139983417dd6941f206254ff62d75654a7b8eb2bfa6c9a98ab1d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 103b12d70c70160e8647b1ceb929a6b34f33058027db7671d659cfef405b5a08ff5afedb0f88c9d2b5900254701ebf667c4a30feb0d2d77020fa048dae1135d9
|
7
|
+
data.tar.gz: 3399370d054fbb51897a4db79863c3714487eb5c166f165febf0eae0bac4c50c984c898672bb3bc62c8b9e33c8e661bcd80a9dd2d2bd7119272f0564154639dc
|
data/Gemfile.lock
CHANGED
@@ -1,34 +1,42 @@
|
|
1
1
|
GEM
|
2
2
|
remote: https://rubygems.org/
|
3
3
|
specs:
|
4
|
-
CFPropertyList (
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
4
|
+
CFPropertyList (3.0.7)
|
5
|
+
base64
|
6
|
+
nkf
|
7
|
+
rexml
|
8
|
+
ast (2.4.0)
|
9
|
+
base64 (0.2.0)
|
10
|
+
diff-lcs (1.5.1)
|
11
|
+
nkf (0.2.0)
|
12
|
+
parallel (1.12.1)
|
13
|
+
parser (2.4.0.2)
|
14
|
+
ast (~> 2.3)
|
9
15
|
powerpack (0.1.1)
|
10
|
-
rainbow (
|
11
|
-
|
12
|
-
|
13
|
-
rspec-
|
14
|
-
rspec-
|
15
|
-
|
16
|
-
|
17
|
-
|
16
|
+
rainbow (3.0.0)
|
17
|
+
rexml (3.4.0)
|
18
|
+
rspec (3.13.0)
|
19
|
+
rspec-core (~> 3.13.0)
|
20
|
+
rspec-expectations (~> 3.13.0)
|
21
|
+
rspec-mocks (~> 3.13.0)
|
22
|
+
rspec-core (3.13.2)
|
23
|
+
rspec-support (~> 3.13.0)
|
24
|
+
rspec-expectations (3.13.3)
|
18
25
|
diff-lcs (>= 1.2.0, < 2.0)
|
19
|
-
rspec-support (~> 3.
|
20
|
-
rspec-mocks (3.
|
26
|
+
rspec-support (~> 3.13.0)
|
27
|
+
rspec-mocks (3.13.2)
|
21
28
|
diff-lcs (>= 1.2.0, < 2.0)
|
22
|
-
rspec-support (~> 3.
|
23
|
-
rspec-support (3.
|
24
|
-
rubocop (0.
|
25
|
-
|
29
|
+
rspec-support (~> 3.13.0)
|
30
|
+
rspec-support (3.13.2)
|
31
|
+
rubocop (0.52.1)
|
32
|
+
parallel (~> 1.10)
|
33
|
+
parser (>= 2.4.0.2, < 3.0)
|
26
34
|
powerpack (~> 0.1)
|
27
|
-
rainbow (>=
|
35
|
+
rainbow (>= 2.2.2, < 4.0)
|
28
36
|
ruby-progressbar (~> 1.7)
|
29
|
-
unicode-display_width (~> 0.
|
30
|
-
ruby-progressbar (1.
|
31
|
-
unicode-display_width (
|
37
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
38
|
+
ruby-progressbar (1.9.0)
|
39
|
+
unicode-display_width (1.3.0)
|
32
40
|
|
33
41
|
PLATFORMS
|
34
42
|
ruby
|
@@ -37,3 +45,6 @@ DEPENDENCIES
|
|
37
45
|
CFPropertyList
|
38
46
|
rspec
|
39
47
|
rubocop
|
48
|
+
|
49
|
+
BUNDLED WITH
|
50
|
+
2.6.2
|
data/README.md
CHANGED
@@ -38,11 +38,14 @@ Extractible info
|
|
38
38
|
---
|
39
39
|
Currently, we can extract:
|
40
40
|
|
41
|
-
+
|
42
|
-
+
|
41
|
+
+ expiration_date
|
42
|
+
+ app_id
|
43
|
+
+ team_id
|
44
|
+
+ bundle_id
|
43
45
|
+ certificate
|
44
|
-
+
|
45
|
-
+
|
46
|
+
+ profile_type
|
47
|
+
+ registered_udids in case of an Ad-Hoc type
|
48
|
+
+ has_associated_domains
|
46
49
|
|
47
50
|
Contributing
|
48
51
|
---
|
@@ -50,4 +53,17 @@ Contributing
|
|
50
53
|
2. Create your feature branch (git checkout -b my-new-feature)
|
51
54
|
3. Commit your changes (git commit -am 'Add some feature')
|
52
55
|
4. Push to the branch (git push origin my-new-feature)
|
53
|
-
5. Create a new Pull Request
|
56
|
+
5. Create a new Pull Request
|
57
|
+
|
58
|
+
2.0.1 -2025-01-01
|
59
|
+
---
|
60
|
+
|
61
|
+
+ Changed: Bump dependencies
|
62
|
+
|
63
|
+
2.0.0 -2017-09-06
|
64
|
+
---
|
65
|
+
|
66
|
+
+ Changed: `bundle_id` has been renamed `app_id` for the application identifier
|
67
|
+
+ Added: `team_id` is now available
|
68
|
+
+ Added: `bundle_id` is now available from `app_id` extraction
|
69
|
+
+ Added: `has_associated_domains` is available
|
@@ -5,20 +5,25 @@ module MobileProvision
|
|
5
5
|
class Representation
|
6
6
|
EXPIRATION_DATE_KEY = 'ExpirationDate'
|
7
7
|
ENTITLEMENTS_KEY = 'Entitlements'
|
8
|
-
|
8
|
+
APP_ID_KEY = 'application-identifier'
|
9
9
|
CERTIFICATE_KEY = 'DeveloperCertificates'
|
10
10
|
INHOUSE_PROFILE_KEY = 'ProvisionsAllDevices'
|
11
11
|
ADHOC_PROFILE_KEY = 'ProvisionedDevices'
|
12
|
+
TEAM_ID_KEY = 'com.apple.developer.team-identifier'
|
13
|
+
HAS_ASSOCIATED_DOMAINS = 'com.apple.developer.associated-domains'
|
12
14
|
|
13
|
-
attr_reader :expiration_date, :
|
15
|
+
attr_reader :expiration_date, :app_id, :certificate, :profile_type, :registered_udids, :team_id, :bundle_id, :has_associated_domains
|
14
16
|
|
15
17
|
def initialize(file)
|
16
18
|
read!(file)
|
17
19
|
@expiration_date = build_expiration_date
|
18
20
|
@certificate = build_certificate
|
19
|
-
@
|
21
|
+
@app_id = build_app_id
|
20
22
|
@profile_type = build_profile_type
|
21
23
|
@registered_udids = build_registered_udids
|
24
|
+
@team_id = build_team_id
|
25
|
+
@bundle_id = build_bundle_id
|
26
|
+
@has_associated_domains = has_associated_domains?
|
22
27
|
end
|
23
28
|
|
24
29
|
private
|
@@ -68,9 +73,9 @@ module MobileProvision
|
|
68
73
|
Time.parse(expiration_date.to_s).utc
|
69
74
|
end
|
70
75
|
|
71
|
-
def
|
76
|
+
def build_app_id
|
72
77
|
entitlements = read_plist_value(ENTITLEMENTS_KEY)
|
73
|
-
read_plist_value(
|
78
|
+
read_plist_value(APP_ID_KEY, entitlements)
|
74
79
|
end
|
75
80
|
|
76
81
|
def build_certificate
|
@@ -93,5 +98,19 @@ module MobileProvision
|
|
93
98
|
return nil unless @profile_type == AD_HOC_TYPE
|
94
99
|
read_plist_value(ADHOC_PROFILE_KEY)
|
95
100
|
end
|
101
|
+
|
102
|
+
def build_team_id
|
103
|
+
entitlements = read_plist_value(ENTITLEMENTS_KEY)
|
104
|
+
read_plist_value(TEAM_ID_KEY, entitlements)
|
105
|
+
end
|
106
|
+
|
107
|
+
def build_bundle_id
|
108
|
+
build_app_id[/(?<=\.).*/]
|
109
|
+
end
|
110
|
+
|
111
|
+
def has_associated_domains?
|
112
|
+
entitlements = read_plist_value(ENTITLEMENTS_KEY)
|
113
|
+
read_plist_value(HAS_ASSOCIATED_DOMAINS, entitlements).kind_of? String
|
114
|
+
end
|
96
115
|
end
|
97
116
|
end
|
data/mobile_provision.gemspec
CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.name = 'mobile_provision'
|
9
9
|
s.version = MobileProvision::Version::STRING
|
10
10
|
s.platform = Gem::Platform::RUBY
|
11
|
-
s.required_ruby_version = '>=
|
11
|
+
s.required_ruby_version = '>= 3.3.0'
|
12
12
|
s.authors = ['Alexandre Ignjatovic', 'Robin Sfez', 'Benoit Tigeot', 'Christophe Valentin']
|
13
13
|
s.description = <<-EOF
|
14
14
|
MobileProvision is a convenient Mobile Provision wrapper written in Ruby.
|
@@ -37,7 +37,7 @@ Gem::Specification.new do |s|
|
|
37
37
|
|
38
38
|
s.summary = 'MobileProvision is a convenient Mobile Provision wrapper written in Ruby.'
|
39
39
|
|
40
|
-
s.add_development_dependency('rspec', '~> 3
|
40
|
+
s.add_development_dependency('rspec', '~> 3')
|
41
41
|
s.add_development_dependency('rubocop')
|
42
|
-
s.add_dependency('CFPropertyList', '~>
|
43
|
-
end
|
42
|
+
s.add_dependency('CFPropertyList', '~> 3')
|
43
|
+
end
|
metadata
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mobile_provision
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexandre Ignjatovic
|
8
8
|
- Robin Sfez
|
9
9
|
- Benoit Tigeot
|
10
10
|
- Christophe Valentin
|
11
|
-
autorequire:
|
11
|
+
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date:
|
14
|
+
date: 2025-01-01 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: rspec
|
@@ -19,14 +19,14 @@ dependencies:
|
|
19
19
|
requirements:
|
20
20
|
- - "~>"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: '3
|
22
|
+
version: '3'
|
23
23
|
type: :development
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
27
|
- - "~>"
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '3
|
29
|
+
version: '3'
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: rubocop
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
@@ -47,16 +47,16 @@ dependencies:
|
|
47
47
|
requirements:
|
48
48
|
- - "~>"
|
49
49
|
- !ruby/object:Gem::Version
|
50
|
-
version: '
|
50
|
+
version: '3'
|
51
51
|
type: :runtime
|
52
52
|
prerelease: false
|
53
53
|
version_requirements: !ruby/object:Gem::Requirement
|
54
54
|
requirements:
|
55
55
|
- - "~>"
|
56
56
|
- !ruby/object:Gem::Version
|
57
|
-
version: '
|
58
|
-
description:
|
59
|
-
|
57
|
+
version: '3'
|
58
|
+
description: " MobileProvision is a convenient Mobile Provision wrapper written
|
59
|
+
in Ruby.\n"
|
60
60
|
email: dev@appaloosa-store.com
|
61
61
|
executables: []
|
62
62
|
extensions: []
|
@@ -71,13 +71,12 @@ files:
|
|
71
71
|
- lib/mobile_provision.rb
|
72
72
|
- lib/mobile_provision/representation.rb
|
73
73
|
- lib/mobile_provision/version.rb
|
74
|
-
- mobile_provision-1.1.0.gem
|
75
74
|
- mobile_provision.gemspec
|
76
75
|
homepage: http://github.com/appaloosa-store/mobile_provision
|
77
76
|
licenses:
|
78
77
|
- MIT
|
79
78
|
metadata: {}
|
80
|
-
post_install_message:
|
79
|
+
post_install_message:
|
81
80
|
rdoc_options: []
|
82
81
|
require_paths:
|
83
82
|
- lib
|
@@ -85,16 +84,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
85
84
|
requirements:
|
86
85
|
- - ">="
|
87
86
|
- !ruby/object:Gem::Version
|
88
|
-
version:
|
87
|
+
version: 3.3.0
|
89
88
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
90
89
|
requirements:
|
91
90
|
- - ">="
|
92
91
|
- !ruby/object:Gem::Version
|
93
92
|
version: '0'
|
94
93
|
requirements: []
|
95
|
-
|
96
|
-
|
97
|
-
signing_key:
|
94
|
+
rubygems_version: 3.5.22
|
95
|
+
signing_key:
|
98
96
|
specification_version: 4
|
99
97
|
summary: MobileProvision is a convenient Mobile Provision wrapper written in Ruby.
|
100
98
|
test_files: []
|
data/mobile_provision-1.1.0.gem
DELETED
Binary file
|