-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSBBAnimatedTweetActivity.podspec
28 lines (23 loc) · 1.24 KB
/
SBBAnimatedTweetActivity.podspec
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
27
28
Pod::Spec.new do |s|
s.name = "SBBAnimatedTweetActivity"
s.version = "0.2.0"
s.summary = "A UIActivity subclass for posting animated GIF's to Twitter."
s.description = <<-DESC
SBBAnimatedTweetActivity is a replacement for the built-in Twitter UIActivity that handles animated images. This is due to the built-in Twitter UIActivity posting a still frame from an animated GIF to Tweets instead of the animated GIF itself.
DESC
s.homepage = "https://github.com/siburb/SBBAnimatedTweetActivity"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Simon Burbidge" => "[email protected]" }
s.source = { :git => "https://github.com/siburb/SBBAnimatedTweetActivity.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/siburb'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'SBBAnimatedTweetActivity' => ['Pod/Assets/*']
}
s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'UIKit', 'Accounts', 'Social', 'MobileCoreServices'
s.dependency 'FLAnimatedImage', '~> 1.0.8'
end