pod-builder 0.3.6 → 0.3.7
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 289c4a43c5bda8b541156126bea3c707956f3edb93e6879c70448652802e4b70
|
4
|
+
data.tar.gz: 6af53c57a6dcfb938a354546022ec3de0e785e95d8abd56ee38bd185360afbf6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 889e9d2d9b7d8b297ddd1e46e8d2d911eb6d9563647086da12c2e94b1bd02cc1962ab9bcd8a53867dc9b9c5cc2a23c79a1c663150a2ffd08f2e8e5ea6bbe213a
|
7
|
+
data.tar.gz: caf4c9a27f27096acd9ecce83836d228e088a3812a3b48bd2a8f0dbc3104b778fa2b02dfd50c40c7c8c5ac07c4c90513d4bb1fafb4ba2c04f96d819d997706c0
|
data/lib/pod_builder/install.rb
CHANGED
@@ -106,7 +106,7 @@ module PodBuilder
|
|
106
106
|
end
|
107
107
|
|
108
108
|
def self.copy_dsyms(podfile_items)
|
109
|
-
Dir.glob("#{Configuration.build_path}/
|
109
|
+
Dir.glob("#{Configuration.build_path}/dSYM/*iphoneos/**/*.dSYM") do |dsym_path|
|
110
110
|
framework_rel_path = framework_rel_path(dsym_path.gsub(File.extname(dsym_path), ""), podfile_items)
|
111
111
|
|
112
112
|
destination_path = PodBuilder::basepath("dSYM/iphoneos/#{File.dirname(framework_rel_path)}")
|
@@ -114,7 +114,7 @@ module PodBuilder
|
|
114
114
|
FileUtils.cp_r(dsym_path, destination_path)
|
115
115
|
end
|
116
116
|
|
117
|
-
Dir.glob("#{Configuration.build_path}/
|
117
|
+
Dir.glob("#{Configuration.build_path}/dSYM/*iphonesimulator/**/*.dSYM") do |dsym_path|
|
118
118
|
framework_rel_path = framework_rel_path(dsym_path.gsub(File.extname(dsym_path), ""), podfile_items)
|
119
119
|
|
120
120
|
destination_path = PodBuilder::basepath("dSYM/iphonesimulator/#{File.dirname(framework_rel_path)}")
|
@@ -4,7 +4,7 @@ require 'CFPropertyList'
|
|
4
4
|
|
5
5
|
use_frameworks!
|
6
6
|
|
7
|
-
plugin 'cocoapods-rome', { dsym:
|
7
|
+
plugin 'cocoapods-rome', { dsym: true, configuration: '%%%build_configuration%%%', pre_compile: Proc.new { |installer|
|
8
8
|
|
9
9
|
def set_build_settings(target_name, build_configurations, installer)
|
10
10
|
installer.pods_project.targets.each do |target|
|
data/lib/pod_builder/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pod-builder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tomas Camin
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-01-
|
11
|
+
date: 2019-01-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|