33 lines
908 B
Ruby
33 lines
908 B
Ruby
source 'https://github.com/CocoaPods/Specs.git'
|
|
use_frameworks!
|
|
|
|
target 'PNObject_Example' do
|
|
pod 'PNObject', :path => '../'
|
|
pod 'PEAR-FileManager-iOS'
|
|
pod 'NSDate_Utils'
|
|
pod 'UIDevice-Utils'
|
|
pod 'AFNetworking'
|
|
pod 'nv-ios-http-status'
|
|
pod 'NSString-Helper'
|
|
pod 'CodFis-Helper'
|
|
pod 'StrongestPasswordValidator'
|
|
pod 'PureLayout'
|
|
pod 'FBSDKCoreKit'
|
|
pod 'FBSDKShareKit'
|
|
pod 'FBSDKLoginKit'
|
|
|
|
end
|
|
|
|
target 'PNObject_Tests' do
|
|
pod 'PNObject', :path => '../'
|
|
pod 'Specta'
|
|
pod 'Expecta'
|
|
pod 'FBSnapshotTestCase'
|
|
pod 'Expecta+Snapshots'
|
|
end
|
|
|
|
post_install do |installer|
|
|
`find Pods -regex 'Pods/FBSDKShareKit.*\\.h' -print0 | xargs -0 sed -i '' 's/\\(<\\)FBSDKShareKit\\/\\(.*\\)\\(>\\)/\\"\\2\\"/'`
|
|
#`find Pods -regex 'Pods/Google.*\\.h' -print0 | xargs -0 sed -i '' 's/\\(<\\)GoogleInteractiveMediaAds\\/\\(.*\\)\\(>\\)/\\"\\2\\"/'`
|
|
end
|