motion-cocoapods 1.3.5 → 1.3.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: abcdf7441102e317f72998956b94c3cf4d73a2ea
4
- data.tar.gz: 7cd825d6710f4def3c61eb786b07f226cc6c6d51
3
+ metadata.gz: 110d0e9f30de7f5b9cc0b3ce4b4a543d792a6942
4
+ data.tar.gz: d6e2195b11a4fc6e12dd423210df793a93679a5e
5
5
  SHA512:
6
- metadata.gz: e1b971158fd66667afbc27f017cb5d3e280a8f9370059d26995b40b895c5d2a459122a7f05080a419239b25cd8f89ed16c45fc26504a7da0652066e947065288
7
- data.tar.gz: dc550be563eb03fa7ea3e1035205059778a08122636fc4c4c169ba57ec9cc0eddd74779f98cb551e12dd6d153922ce5b8d4e3bddf81d12adbd58dc54dbacfa32
6
+ metadata.gz: e5e730009cb9e3504a9bf3be78d175e65bea1e158d65140e9f2d55a3aada73eecc008db66197892d00388e6a0022f18cd7c0a7bbf3482e3e671388b3c74f6385
7
+ data.tar.gz: efd8efd19746eb8e5801dcce080cfa50d36707ca06fbc3e1ac815dd07c85bf3e85e058124f9c5335e875784a70640ef77c0fb30e82ead36752b6d05abff5d5e8
@@ -57,7 +57,7 @@ module Motion::Project
57
57
  #---------------------------------------------------------------------------#
58
58
 
59
59
  class CocoaPods
60
- VERSION = '1.3.5'
60
+ VERSION = '1.3.6'
61
61
  PODS_ROOT = 'vendor/Pods'
62
62
 
63
63
  attr_accessor :podfile
@@ -202,8 +202,9 @@ module Motion::Project
202
202
  resources = []
203
203
  File.open(Pathname.new(@config.project_dir) + PODS_ROOT + 'Pods-resources.sh') { |f|
204
204
  f.each_line do |line|
205
- if matched = line.match(/install_resource\s+'(.*)'/)
206
- resources << Pathname.new(@config.project_dir) + PODS_ROOT + matched[1]
205
+ if matched = line.match(/install_resource\s+(.*)/)
206
+ path = (matched[1].strip)[1..-2]
207
+ resources << Pathname.new(@config.project_dir) + PODS_ROOT + path
207
208
  end
208
209
  end
209
210
  }
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.3.5
4
+ version: 1.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Laurent Sansonetti
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-07-04 00:00:00.000000000 Z
11
+ date: 2013-08-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cocoapods
@@ -54,7 +54,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
54
54
  version: '0'
55
55
  requirements: []
56
56
  rubyforge_project:
57
- rubygems_version: 2.0.3
57
+ rubygems_version: 2.0.6
58
58
  signing_key:
59
59
  specification_version: 4
60
60
  summary: CocoaPods integration for RubyMotion projects