motion-cocoapods 1.9.0 → 1.9.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/lib/motion/project/cocoapods.rb +4 -2
- data/lib/motion/project/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9e2602f0218bebba61f34e1746260f034873d85b
|
|
4
|
+
data.tar.gz: 656ac858e284355cb21200640c704bbb4f37ac66
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 221e0f271f0b36056936718773d0b8b2a1810ed3ffc3cd3fd6e3b70fa6c903c8640e5319ffebd396ba2df1ad9276275dbf70a47f793c2b7977c77dc7307e8745
|
|
7
|
+
data.tar.gz: facac3cbb9b71fba79f9fed556ab7386b396fc9950c02deafe6736ceef0729a339c709c1b7e63075bdc523982f18984d13d182cb6399f46e40b7a7f9cc9e31df
|
|
@@ -400,8 +400,7 @@ module Motion::Project
|
|
|
400
400
|
end
|
|
401
401
|
|
|
402
402
|
def lib_search_path_flags
|
|
403
|
-
lib_search_paths
|
|
404
|
-
@lib_search_path_flags
|
|
403
|
+
lib_search_paths.map { |p| "-L'#{p}'" }.join(' ')
|
|
405
404
|
end
|
|
406
405
|
|
|
407
406
|
def lib_search_paths
|
|
@@ -504,6 +503,9 @@ module Motion::Project
|
|
|
504
503
|
f.each_line do |line|
|
|
505
504
|
if matched = line.match(/install_resource\s+(.*)/)
|
|
506
505
|
path = (matched[1].strip)[1..-2]
|
|
506
|
+
if path.start_with?('${PODS_ROOT}')
|
|
507
|
+
path = path.sub('${PODS_ROOT}/', '')
|
|
508
|
+
end
|
|
507
509
|
if path.include?("$PODS_CONFIGURATION_BUILD_DIR")
|
|
508
510
|
path = File.join(".build", File.basename(path))
|
|
509
511
|
end
|
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.9.
|
|
4
|
+
version: 1.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Laurent Sansonetti
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-01-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cocoapods
|
|
@@ -56,7 +56,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
56
56
|
version: '0'
|
|
57
57
|
requirements: []
|
|
58
58
|
rubyforge_project:
|
|
59
|
-
rubygems_version: 2.6.
|
|
59
|
+
rubygems_version: 2.6.13
|
|
60
60
|
signing_key:
|
|
61
61
|
specification_version: 4
|
|
62
62
|
summary: CocoaPods integration for RubyMotion projects
|