mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-07 21:20:07 +00:00
* Drop support for iOS 7 * Copy reference images * Update deployment for sample projects * Update version * Update "Life Without Cocoapods"
32 lines
966 B
Ruby
32 lines
966 B
Ruby
source 'https://github.com/CocoaPods/Specs.git'
|
|
|
|
platform :ios, '8.0'
|
|
|
|
target :'AsyncDisplayKitTests' do
|
|
pod 'OCMock', '~> 2.2'
|
|
pod 'FBSnapshotTestCase/Core', '~> 2.1'
|
|
pod 'JGMethodSwizzler', :git => 'https://github.com/JonasGessner/JGMethodSwizzler', :branch => 'master'
|
|
|
|
# Only for buck build
|
|
pod 'PINRemoteImage', '3.0.0-beta.7'
|
|
|
|
#TODO CocoaPods plugin instead?
|
|
post_install do |installer|
|
|
require 'fileutils'
|
|
|
|
# Assuming we're at the root dir
|
|
buck_files_dir = 'buck-files'
|
|
if File.directory?(buck_files_dir)
|
|
installer.pod_targets.flat_map do |pod_target|
|
|
pod_name = pod_target.pod_name
|
|
# Copy the file at buck-files/BUCK_pod_name to Pods/pod_name/BUCK,
|
|
# override existing file if needed
|
|
buck_file = buck_files_dir + '/BUCK_' + pod_name
|
|
if File.file?(buck_file)
|
|
FileUtils.cp(buck_file, 'Pods/' + pod_name + '/BUCK', :preserve => false)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|