forked from jessesquires/JSQMessagesViewController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJSMessagesViewController.podspec
More file actions
15 lines (15 loc) · 967 Bytes
/
JSMessagesViewController.podspec
File metadata and controls
15 lines (15 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = "JSMessagesViewController"
s.version = "2.0.2"
s.summary = "A messages UI for iPhone and iPad."
s.description = "This messages tableview controller is very similar to the one in the iOS Messages app. Note, this is only a messaging UI, not a messaging app. This is intended to be used in an existing app where you have (or are developing) a messaging system and need a user interface for it."
s.homepage = "https://github.com/jessesquires/MessagesTableViewController"
s.license = 'MIT License'
s.source = { :git => "https://github.com/egold/MessagesTableViewController.git", :tag => s.version.to_s }
s.platform = :ios, '5.0'
s.source_files = 'JSMessagesTableViewController'
s.resources = "JSMessagesTableViewController/Resources/**/*.*"
s.frameworks = 'AudioToolbox'
s.requires_arc = true
end