-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'URBMediaFocusViewController' | ||
s.version = '0.5.8' | ||
s.version = '0.9.0' | ||
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.description = 'URBMediaFocusViewController is an experiment to recreate the view used to enlarge photos and videos from their thumbnail previews as seen in Tweetbot 3 using the UIDynamics API introduced in iOS 7.' | ||
s.homepage = 'https://github.com/u10int/URBMediaFocusViewController' | ||
s.author = { | ||
'Nicholas Shipes' => '[email protected]', 'Ahmed Khalaf' => '[email protected]' | ||
'Nicholas Shipes' => '[email protected]' | ||
} | ||
s.source = { | ||
:git => 'https://github.com/u10int/URBMediaFocusViewController.git', | ||
:tag => s.version.to_s | ||
} | ||
s.platform = :ios, '7.0' | ||
s.platform = :ios, '8.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' | ||
s.ios.deployment_target = '8.0' | ||
end |