forked from HeroTransitions/Hero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Hero.podspec
22 lines (17 loc) · 919 Bytes
/
Hero.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "Hero"
s.version = "0.1.0"
s.summary = "Supercharged transition engine for iOS."
s.description = <<-DESC
Supercharged transition engine for iOS. Build your custom view transitions with few lines of code or even no code at all. Inspired by Polymer's neon-animated-pages and Keynote's Magic Move.
DESC
s.homepage = "https://github.com/lkzhao/Hero"
s.screenshots = "https://github.com/lkzhao/Hero/blob/master/Resources/[email protected]?raw=true"
s.license = 'MIT'
s.author = { "Luke" => "[email protected]" }
s.source = { :git => "https://github.com/lkzhao/Hero.git", :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.ios.frameworks = 'UIKit', 'Foundation'
s.requires_arc = true
s.source_files = 'Hero/*.swift'
end