cocoapods-generate 1.3.0 → 1.3.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 +4 -4
- data/README.md +9 -6
- data/VERSION +1 -1
- data/lib/cocoapods/generate/configuration.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fe3a4797a7c76c66418b58add0f315698b10c3f0ccfc736cec676865c0fcd7b2
|
|
4
|
+
data.tar.gz: e5071e101d5d54ac11ec94eb0226d7409cbedbff3edb6cd857eb01ddcfa0103b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 40e0c9e09b5ce101c3d8747369361c4d796170fe120f435f80547fc8b01ec8d1f33a60e46de1167024e95b7c375702b9170d784d8b204a5b8b63a01760efc80f
|
|
7
|
+
data.tar.gz: 64252420f3628f13165255fcd82159df549fd07e234c929e6bf4cb58086d81a71c83ceb1bc31bc1d59914f3f600f46f59c751941bac5ca4543b5dbb0e1288376
|
data/README.md
CHANGED
|
@@ -54,7 +54,10 @@ Options:
|
|
|
54
54
|
--podfile-path=PATH Path to podfile to use
|
|
55
55
|
--use-podfile Whether restrictions should be copied from
|
|
56
56
|
the podfile
|
|
57
|
-
--use-
|
|
57
|
+
--use-podfile-plugins Whether plugins should be copied from the
|
|
58
|
+
podfile
|
|
59
|
+
--use-lockfile Whether the lockfile should be used to
|
|
60
|
+
discover transitive dependencies
|
|
58
61
|
--use-lockfile-versions Whether versions from the lockfile should
|
|
59
62
|
be used
|
|
60
63
|
--use-libraries Whether to use libraries instead of
|
|
@@ -81,11 +84,11 @@ Options:
|
|
|
81
84
|
for development pods
|
|
82
85
|
--warn-for-multiple-pod-sources Whether installation should warn when a pod
|
|
83
86
|
is found in multiple sources
|
|
84
|
-
--use-modular-headers Whether the target should be generated as
|
|
85
|
-
|
|
86
|
-
modules, as if `use_modular_headers!`
|
|
87
|
-
|
|
88
|
-
|
|
87
|
+
--use-modular-headers Whether the target should be generated as a
|
|
88
|
+
clang module, treating dependencies as
|
|
89
|
+
modules, as if `use_modular_headers!` were
|
|
90
|
+
specified. Will error if both this option
|
|
91
|
+
and a podfile are specified
|
|
89
92
|
```
|
|
90
93
|
<!-- end cli usage -->
|
|
91
94
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.3.
|
|
1
|
+
1.3.1
|
|
@@ -136,7 +136,7 @@ module Pod
|
|
|
136
136
|
option :podfile, [Podfile], 'Podfile.from_file(podfile_path) if (podfile_path && File.file?(File.expand_path(podfile_path)))'
|
|
137
137
|
option :use_podfile, BOOLEAN, '!!podfile', 'Whether restrictions should be copied from the podfile', nil, nil, coerce_to_bool
|
|
138
138
|
option :use_podfile_plugins, BOOLEAN, 'use_podfile', 'Whether plugins should be copied from the podfile', nil, nil, coerce_to_bool
|
|
139
|
-
option :podfile_plugins, HashOf.new(keys: [String], values: [NilClass, HashOf.new(keys: [String], values: [String, Hash, Array])]),
|
|
139
|
+
option :podfile_plugins, HashOf.new(keys: [String], values: [NilClass, HashOf.new(keys: [String], values: [TrueClass, FalseClass, NilClass, String, Hash, Array])]),
|
|
140
140
|
'(use_podfile && podfile) ? podfile.plugins : {}',
|
|
141
141
|
nil,
|
|
142
142
|
nil,
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cocoapods-generate
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Samuel Giddins
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-11-
|
|
11
|
+
date: 2018-11-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|