ios - Cocoapods : spec.prefix_header_contents does not work -


here podspec :

pod::spec.new |s|   s.name         = "mycbdlumberjack"   s.version      = "0.0.1"   s.source       = { :git => 'https://me@bitbucket.org/me/mycbdlumberjack.git',                      :tag =>  "#{s.version}" }   s.source_files  = 'mycbdlumberjack/my lumberjack/**/*.{h,m}'   s.public_header_files = 'mycbdlumberjack/**/initializationcocoalumberjack.h'   s.resource  = "mycbdlumberjack/help_mycbdlumberjack.rtfd"   s.ios.platform   = :ios, '5.0'   s.osx.platform   = :osx, '10.7'   s.requires_arc = true   s.osx.framework = 'appkit'   s.ios.framework = 'uikit'   s.prefix_header_contents = '#import "ddlog.h"'   s.dependency 'cocoalumberjack', '~>1.8' end 

but, don't see result it. #import "ddlog.h" not appear in pods-mycbdlumberjack-prefix.pch.

am looking @ wrong place?

ps: seems line included when linting not included when include pod in project...

that mistake. path repo wrong...


Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -