mobile_provision 2.0.0 → 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 +5 -0
- data/lib/mobile_provision/version.rb +1 -1
- data/mobile_provision.gemspec +4 -4
- metadata +11 -12
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
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: 2.0.
|
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,14 +47,14 @@ 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: '
|
57
|
+
version: '3'
|
58
58
|
description: " MobileProvision is a convenient Mobile Provision wrapper written
|
59
59
|
in Ruby.\n"
|
60
60
|
email: dev@appaloosa-store.com
|
@@ -76,7 +76,7 @@ homepage: http://github.com/appaloosa-store/mobile_provision
|
|
76
76
|
licenses:
|
77
77
|
- MIT
|
78
78
|
metadata: {}
|
79
|
-
post_install_message:
|
79
|
+
post_install_message:
|
80
80
|
rdoc_options: []
|
81
81
|
require_paths:
|
82
82
|
- lib
|
@@ -84,16 +84,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
84
84
|
requirements:
|
85
85
|
- - ">="
|
86
86
|
- !ruby/object:Gem::Version
|
87
|
-
version:
|
87
|
+
version: 3.3.0
|
88
88
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
89
|
requirements:
|
90
90
|
- - ">="
|
91
91
|
- !ruby/object:Gem::Version
|
92
92
|
version: '0'
|
93
93
|
requirements: []
|
94
|
-
|
95
|
-
|
96
|
-
signing_key:
|
94
|
+
rubygems_version: 3.5.22
|
95
|
+
signing_key:
|
97
96
|
specification_version: 4
|
98
97
|
summary: MobileProvision is a convenient Mobile Provision wrapper written in Ruby.
|
99
98
|
test_files: []
|