Files
GitHawk/Podfile
Ryan Nystrom 860d0f7318 [WIP] Exploring styled text refactor (#1231)
* styled text and builder

* add styledtext local pod

* pod install

* move font back to text style

* lru cache

* more tests, fix head/tail swap

* clear api, more tests

* memory warnings, add cgimage conformance

* styled text render cache key

* defer locks, add cachable size, renderer has global cache

* add snapshot tests

* move local pods to remove space

* update podfile

* snapshot tests for renderer

* styled text view

* update access

* install pod again

* alltext api, const text styles

* add back h1 styles

* reset path changes, snap 0.2.3, revert githawk changes

* remove unused file

* measure cache size in bytes not bits
2017-12-17 09:20:37 -05:00

48 lines
1.2 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'
target 'Freetime' do
end
target 'FreetimeTests' do
pod 'FBSnapshotTestCase'
end
post_install do |installer|
system("sh tools/generateAcknowledgements.sh")
end