-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathAsyncMessagesViewController.podspec
20 lines (20 loc) · 1.18 KB
/
AsyncMessagesViewController.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |spec|
spec.name = 'AsyncMessagesViewController'
spec.version = '0.1'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.homepage = 'https://github.com/nguyenhuy/AsyncMessagesViewController'
spec.authors = { 'Huy Nguyen' => 'http://huytnguyen.me' }
spec.summary = 'A smooth, responsive and flexible messages UI library for iOS apps.'
spec.source = { :git => 'https://github.com/nguyenhuy/AsyncMessagesViewController.git', :tag => spec.version.to_s }
spec.module_name = 'AsyncMessagesViewController'
spec.header_dir = 'AsyncMessagesViewController'
spec.documentation_url = 'https://github.com/nguyenhuy/AsyncMessagesViewController'
spec.platform = :ios
spec.ios.deployment_target = '9.0'
spec.swift_version = '4.0'
spec.requires_arc = true
spec.source_files = 'Source/**/*.swift'
spec.ios.resource_bundle = { spec => 'Source/Assets/AsyncMessagesViewController.xcassets' }
spec.dependency 'Texture', '2.6'
spec.dependency 'SlackTextViewController', '1.9.6'
end