forked from u10int/URBMediaFocusViewController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathURBMediaFocusViewController.podspec
More file actions
20 lines (20 loc) · 996 Bytes
/
Copy pathURBMediaFocusViewController.podspec
File metadata and controls
20 lines (20 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'URBMediaFocusViewController'
s.version = '0.5.8'
s.summary = 'A view controller that focuses images to their full size with physics similar to Tweetbot 3.'
s.description = 'URBMediaFocusViewController is an experiment to recreate the view used to enlarge photos and videos from their thumbnail previews as seen in Tweetbot 3 for iOS 7 using the new UIDynamics API available in iOS 7.'
s.homepage = 'https://github.com/u10int/URBMediaFocusViewController'
s.author = {
'Nicholas Shipes' => 'nshipes@urban10.com', 'Ahmed Khalaf' => 'ahmed@arkuana.co'
}
s.source = {
:git => 'https://github.com/u10int/URBMediaFocusViewController.git',
:tag => s.version.to_s
}
s.platform = :ios, '7.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.requires_arc = true
s.source_files = 'URBMediaFocusViewController.{h,m}'
s.frameworks = 'UIKit', 'Foundation', 'CoreGraphics', 'QuartzCore', 'AssetsLibrary'
s.ios.deployment_target = '7.0'
end