podsorz 0.0.4 → 0.0.5
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/lib/podsorz/core/Binary/binary_repo.rb +2 -2
- data/lib/podsorz/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: 1c41db9afd0aa8e6264d04ce0583b22ea435fce9f86295a60509cd759071eae1
|
4
|
+
data.tar.gz: 01afb0a6bf59631a3f0c8e47fa0d36d4dbfb119c2dc17447ede0f79ef4003b07
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31bc8b0be37e5e8c5698ad989be1f20742a9d226ea8a969bd066014c2d2284bdb0da57fd8263e0b47994bace9087a69bcce853283107a4f1321a7bfd76c4dd59
|
7
|
+
data.tar.gz: ed59b60eabcff8c0d0b5370ad1d2a40f096fe726ee8b0f6e5775b1fb788d433fa5374f7d19c3f772a37d6e96b82460f47638e69da8d78e90bdcfb8f32347a747
|
@@ -136,9 +136,9 @@ module PodsOrz
|
|
136
136
|
repo_push_cmd = []
|
137
137
|
repo_push_cmd << "cd #{file_path}"
|
138
138
|
if is_swift
|
139
|
-
repo_push_cmd << "pod repo push #{@repo_name} #{pod}.podspec --sources=#{@source_code_repo_url} --allow-warnings --use-libraries --skip-import-validation --use-modular-headers --swift-version=5.0 --skip-tests
|
139
|
+
repo_push_cmd << "pod repo push #{@repo_name} #{pod}.podspec --sources=#{@source_code_repo_url} --allow-warnings --use-libraries --skip-import-validation --use-modular-headers --swift-version=5.0 --skip-tests"
|
140
140
|
else
|
141
|
-
repo_push_cmd << "pod repo push #{@repo_name} #{pod}.podspec --sources=#{@source_code_repo_url} --allow-warnings --use-libraries --skip-import-validation --skip-tests
|
141
|
+
repo_push_cmd << "pod repo push #{@repo_name} #{pod}.podspec --sources=#{@source_code_repo_url} --allow-warnings --use-libraries --skip-import-validation --skip-tests"
|
142
142
|
end
|
143
143
|
|
144
144
|
|
data/lib/podsorz/version.rb
CHANGED