forked from slackhq/SlackTextViewController
-
Notifications
You must be signed in to change notification settings - Fork 1
/
SlackTextViewController.podspec
19 lines (16 loc) · 1.06 KB
/
SlackTextViewController.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@version = "1.9.6"
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 => 'MIT', :file => 'LICENSE' }
s.author = { "Slack Technologies, Inc." => "ios-team@slack-corp.com" }
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 = 'Source/**/*.{h,m}'
end