Files
GitHawk/Local Pods/SlackTextViewController/SlackTextViewController.podspec
James Sherlock c28c088629 Initial repository spring clean (#415)
* Move SwipeCellKit & SlackTextViewController to Local Pods directory

* Move playgrounds to own folder

* Create podspec for MMMarkdown and move to Local Pods
2017-09-24 18:35:05 -04:00

20 lines
1.1 KiB
Ruby
Executable File

@version = "1.9.5"
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