Skip to content

Commit

Permalink
adding podspec and podfile
Browse files Browse the repository at this point in the history
  • Loading branch information
u10int committed Nov 15, 2013
1 parent a8ba06c commit 960b7f8
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
xcodeproj 'SampleProject/URBMediaFocusViewControllerDemo.xcodeproj'

platform :ios, '7.0'
19 changes: 19 additions & 0 deletions URBMediaFocusViewController.podspec
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 960b7f8

Please sign in to comment.