cocoapods-amimono 0.0.8 → 0.0.9

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: 84947eb0089e7f1d0f9bda450455abebb42e9a33
4
- data.tar.gz: b763b27ea7c1a8ee647044a6bf5661580cbe981d
3
+ metadata.gz: c5340098a3e28913af6feea79020e955508b5a1f
4
+ data.tar.gz: 75c133033ee18b89f4c8a674214cf6357d4ef61e
5
5
  SHA512:
6
- metadata.gz: bed92bffa635f6ec1056a5d7eaf6f30fe6b8e8614e09fd97bb7e1504c42578d72c4b4fd43df2fea9bc47a808f1619db86d4313899d4a0a61b6f9691456fbb636
7
- data.tar.gz: 691d1be66daee9184c9c9c63d6d3d18a2b816c36160e812d3cf6ade5bf43ac324457d6eeabbd90a3364791943c87a4630eb4239d823dc207ad417088630460e6
6
+ metadata.gz: 3a4db71d77d464484836fcc630f38727664935e7adc3e12076e9f18c38d2b5b172f0a4a57ccdffd51d1a5f8b55ae474f1fc6d8323974a3504b8f02f2f1cc1713
7
+ data.tar.gz: 5ee4aec20bd825b925c8a8c9aaa705fcb26b331f95404344054695d738f0e4089b5c0fcea6bade67492cf976cfb87855b8b2513ed9e77e38ca95d17dcbf98f43
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cocoapods-amimono (0.0.8)
4
+ cocoapods-amimono (0.0.9)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -30,7 +30,6 @@ and looking at the log output you shouldn't find any `dlopen` call of your Cocoa
30
30
  Currently this plugin has the following limitations:
31
31
 
32
32
  * You will have modify your `post_install` hook. This is necessary because the CocoaPods plugin API currently doesn't offer everything that the gem needs.
33
- * Only dependencies compiled from source will work. This means dependencies with bundled binaries (like vendored static frameworks) won't work. You will have to add these manually to your Xcode project.
34
33
 
35
34
  ## Installation
36
35
 
@@ -1,3 +1,3 @@
1
1
  module CocoapodsAmimono
2
- VERSION = "0.0.8"
2
+ VERSION = "0.0.9"
3
3
  end
@@ -14,7 +14,8 @@ module Amimono
14
14
  full_path = path + entry
15
15
  xcconfig = Xcodeproj::Config.new full_path
16
16
  # Clear the -frameworks flag
17
- xcconfig.other_linker_flags[:frameworks] = Set.new(aggregated_target.pod_targets.reject(&:should_build?).map(&:name))
17
+ non_binary_frameworks = aggregated_target.pod_targets.select(&:should_build?).map(&:name)
18
+ xcconfig.other_linker_flags[:frameworks].reject! { |framework| non_binary_frameworks.include?(framework) }
18
19
  # Add -filelist flag instead, for each architecture
19
20
  archs.each do |arch|
20
21
  config_key = "OTHER_LDFLAGS[arch=#{arch}]"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-amimono
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Renzo Crisostomo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-07 00:00:00.000000000 Z
11
+ date: 2017-04-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler