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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 99ff58fd0a2d0596899962dc281a0819d0f8aa2b
4
- data.tar.gz: f0ffc427ab81109bda2b2d6c2c994eca4c4e5f5b
3
+ metadata.gz: d4b8aba9263c7df21e46140ed1e62fb29d6c34b6
4
+ data.tar.gz: 87466f2c3d1785ad1fc4da1b7abce7fa9f515010
5
5
  SHA512:
6
- metadata.gz: 51c94bba3fcabc8ce7f2de490274bdaf6d8c864104d0a5d09b32d9ac6b92b256ffcf4036d9255cbebee7d9bd775e33a8093b1de48c5e99d439a174cfdbf92dfa
7
- data.tar.gz: 47986f487dd2bdd3f791ad33f1210815f1f8b36a049271029a2b796c328fb6d22ee376391e5121556a509f7e7595b6349812f20092319dc4121baae66f59c92e
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 = path.gsub('$(PODS_ROOT)', File.join(@config.project_dir, PODS_ROOT))
111
- lib_search_paths << path.gsub('"', '')
112
- '-L ' << path
113
- end.join(' ')
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|
@@ -24,6 +24,6 @@
24
24
 
25
25
  module Motion::Project
26
26
  class CocoaPods
27
- VERSION = '1.7.6'
27
+ VERSION = '1.7.7'
28
28
  end
29
29
  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.7.6
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-12 00:00:00.000000000 Z
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.1
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: