Files
GitHawk/Podfile
Ryan Nystrom b3ec648b2a New UITextView control to replace SlackTextViewController (#1307)
* init new text view lib

* autocomplete finding

* autocomplete working

* add caching

* new message VC working
2017-12-24 17:42:11 -05:00

49 lines
1.3 KiB
Ruby

# Uncomment the next line to define a global platform for your project
platform :ios, '10.0'
use_frameworks!
inhibit_all_warnings!
# normal pods
pod 'Alamofire', '~> 4.4.0'
pod 'AlamofireNetworkActivityIndicator', '~> 2.1'
pod 'Apollo', '~> 0.7.0-alpha.5'
pod 'HTMLString', '~> 4.0.1'
pod 'NYTPhotoViewer', '~> 1.1.0'
pod 'SDWebImage/GIF', '~> 4.0.0'
pod 'SnapKit', '~> 4.0.0'
pod 'TUSafariActivity', '~> 1.0.0'
pod 'SwiftLint'
pod 'Fabric'
pod 'Crashlytics'
pod 'Tabman', '~> 1.1'
pod 'Firebase/Core'
pod 'Firebase/Database'
# prerelease pods
pod 'IGListKit', :git => 'https://github.com/Instagram/IGListKit.git', :branch => 'master'
# debugging pods
pod 'FLEX', '~> 2.0', :configurations => ['Debug', 'TestFlight']
# Local Pods w/ custom changes
pod 'MMMarkdown', :path => 'Local Pods/MMMarkdown'
pod 'SlackTextViewController', :path => 'Local Pods/SlackTextViewController'
pod 'SwipeCellKit', :path => 'Local Pods/SwipeCellKit'
pod 'FlatCache', :path => 'Local Pods/FlatCache'
pod 'Highlightr', :path => 'Local Pods/Highlightr'
pod 'StyledText', :path => 'Local Pods/StyledText'
pod 'MessageViewController', :path => 'Local Pods/MessageViewController'
target 'Freetime' do
end
target 'FreetimeTests' do
pod 'FBSnapshotTestCase'
end
post_install do |installer|
system("sh tools/generateAcknowledgements.sh")
end