forked from slackhq/SlackTextViewController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSlackTextViewController.podspec
More file actions
executable file
·26 lines (21 loc) · 1.28 KB
/
Copy pathSlackTextViewController.podspec
File metadata and controls
executable file
·26 lines (21 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
@version = "1.2.4"
Pod::Spec.new do |s|
s.name = "SlackTextViewController"
s.version = @version
s.summary = "A drop-in UIViewController subclass with a custom growing text input and other useful messaging features."
s.description = "Meant to be a replacement for UITableViewController & UICollectionViewController. This library is used in Slack's iOS app. It was built to fit our needs, but is flexible enough to be reused by others wanting to build great messaging apps for iOS."
s.homepage = "https://slack.com/"
s.screenshots = "https://github.com/slackhq/SlackTextViewController/raw/master/Screenshots/slacktextviewcontroller_demo.gif"
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.source = { :git => "https://github.com/slackhq/SlackTextViewController.git", :tag => "v#{s.version}" }
s.platform = :ios, "7.0"
s.requires_arc = true
s.header_mappings_dir = 'Source'
s.source_files = "Classes", "Source/Classes/*.{h,m}"
s.frameworks = 'UIKit'
s.dependency 'SlackTextViewController/Additions'
s.subspec 'Additions' do |add|
add.source_files = 'Source/Additions/*.{h,m}'
end
end