motion-cocoapods 1.7.6 → 1.7.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 +4 -4
- data/lib/motion/project/cocoapods.rb +8 -4
- data/lib/motion/project/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d4b8aba9263c7df21e46140ed1e62fb29d6c34b6
|
|
4
|
+
data.tar.gz: 87466f2c3d1785ad1fc4da1b7abce7fa9f515010
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 37269512f8764c480d5ec6400efabd0576d2e61e27c6956cf9903c244476010f8f18438d6e1a0b71149c955bb1777196bfcb920127e5fc88f516c4a5b8b37bc5
|
|
7
|
+
data.tar.gz: 7a7c2254359bb925f7ffbc2f3677ea87dbb46058e5782c3976d6bcf6512d9dba52fcb2986c24f2baa78868af5bf75359e2b1937968bebfdcfad86a338a1122d3
|
|
@@ -107,10 +107,14 @@ module Motion::Project
|
|
|
107
107
|
lib_search_path_flags = xcconfig['LIBRARY_SEARCH_PATHS'] || ""
|
|
108
108
|
lib_search_paths = []
|
|
109
109
|
lib_search_path_flags = lib_search_path_flags.split(/\s/).map do |path|
|
|
110
|
-
path
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
110
|
+
if path =~ /(\$\(inherited\))|(\$\{inherited\})/
|
|
111
|
+
nil
|
|
112
|
+
else
|
|
113
|
+
path = path.gsub(/(\$\(PODS_ROOT\))|(\$\{PODS_ROOT\})/, File.join(@config.project_dir, PODS_ROOT))
|
|
114
|
+
lib_search_paths << path.gsub('"', '')
|
|
115
|
+
'-L ' << path
|
|
116
|
+
end
|
|
117
|
+
end.compact.join(' ')
|
|
114
118
|
|
|
115
119
|
# Get the name of all static libraries that come pre-built with pods
|
|
116
120
|
pre_built_static_libs = lib_search_paths.map do |path|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: motion-cocoapods
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.7.
|
|
4
|
+
version: 1.7.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Laurent Sansonetti
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-11-
|
|
11
|
+
date: 2015-11-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cocoapods
|
|
@@ -56,8 +56,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
56
56
|
version: '0'
|
|
57
57
|
requirements: []
|
|
58
58
|
rubyforge_project:
|
|
59
|
-
rubygems_version: 2.4.5
|
|
59
|
+
rubygems_version: 2.4.5
|
|
60
60
|
signing_key:
|
|
61
61
|
specification_version: 4
|
|
62
62
|
summary: CocoaPods integration for RubyMotion projects
|
|
63
63
|
test_files: []
|
|
64
|
+
has_rdoc:
|