-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUIView-Motion.podspec
More file actions
24 lines (18 loc) · 942 Bytes
/
UIView-Motion.podspec
File metadata and controls
24 lines (18 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "UIView-Motion"
s.version = "1.0.1"
s.summary = "addSubview and removeFromSuperview with animations! (not with autolayout though)"
s.description = <<-DESC
UIView helper category to add animation on addSubview & removeFromSuperView with one method. Uses facebook pop. Doesn't play well with AutoLayout.
DESC
s.homepage = "https://github.com/itchingpixels/UIView-Motion"
s.license = { :type => "MIT", :file => "LICENCE" }
s.author = { "Mark Szulyovszky" => "mark.szulyovszky@gmail.com" }
s.social_media_url = "http://twitter.com/itchingpixels"
s.source = { :git => "https://github.com/itchingpixels/UIView-Motion.git", :tag => s.version }
s.source_files = 'Class/*'
s.exclude_files = "Example/*"
s.dependency 'pop', '~> 1.0'
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.7'
end