-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDisintegrate.podspec
37 lines (31 loc) · 1.87 KB
/
Disintegrate.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#
# Be sure to run `pod lib lint Disintegrate.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'Disintegrate'
s.version = '0.2.0'
s.summary = 'Disintegration animation inspired by THAT thing Thanos did at the end of Avengers: Infinity War.'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
Disintegrate is a small library providing an animation inspired by how our favorite heroes disappeared at the end of Avengers: Infinity War.
The view or layer that you use it on is divided into small triangles, which then move into one direction and fade away. You can customize
the estimated number of triangles and the direction they will move to.
DESC
s.homepage = 'https://github.com/dbukowski/Disintegrate'
s.screenshots = 'https://i.imgur.com/kPXjfNP.png', 'https://i.imgur.com/bz7zFez.png', 'https://i.imgur.com/EnYu6uJ.png', 'https://i.imgur.com/bNWiGrD.png', 'https://i.imgur.com/kytYTMT.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Dariusz Bukowski' => '[email protected]' }
s.source = { :git => 'https://github.com/dbukowski/Disintegrate.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/darekbukowski'
s.ios.deployment_target = '8.0'
s.swift_version = '4.2'
s.source_files = 'Disintegrate/Classes/**/*'
end