From 960b7f832d5a71506fb04e5461e1d28d50ee1d17 Mon Sep 17 00:00:00 2001 From: Nicholas Shipes Date: Thu, 14 Nov 2013 19:53:40 -0800 Subject: [PATCH] adding podspec and podfile --- Podfile | 3 +++ URBMediaFocusViewController.podspec | 19 +++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 Podfile create mode 100644 URBMediaFocusViewController.podspec diff --git a/Podfile b/Podfile new file mode 100644 index 0000000..281b29f --- /dev/null +++ b/Podfile @@ -0,0 +1,3 @@ +xcodeproj 'SampleProject/URBMediaFocusViewControllerDemo.xcodeproj' + +platform :ios, '7.0' \ No newline at end of file diff --git a/URBMediaFocusViewController.podspec b/URBMediaFocusViewController.podspec new file mode 100644 index 0000000..b1af392 --- /dev/null +++ b/URBMediaFocusViewController.podspec @@ -0,0 +1,19 @@ +Pod::Spec.new do |s| + s.name = 'URBMediaFocusViewController' + s.version = '0.5.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.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 => '0.5.0' + } + 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' +end \ No newline at end of file