forked from kodecocodes/SKTUtils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSCKTEffectsCore.podspec
More file actions
30 lines (25 loc) · 1.28 KB
/
SCKTEffectsCore.podspec
File metadata and controls
30 lines (25 loc) · 1.28 KB
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
#
# Be sure to run `pod lib lint' to ensure this is a valid spec before submitting.
#
Pod::Spec.new do |s|
s.name = 'SCKTEffectsCore'
s.version = '0.1.1'
s.summary = 'Provides core logic for SCKTEffects.'
# 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
This framework serves as the backbone for a custom class which can be
animated using custom animation functions. You wouldn't use this on its own unless you have a custom node hierarchy that you want to animate.
It is based on SKTEffects by raywenderlich.com.
DESC
s.swift_version = '3.0'
s.homepage = 'https://github.com/edwinveger/SCKTEffects'
s.license = { :type => 'MIT', :file => 'LICENSE.txt' }
s.author = { 'edwinveger' => 'info@pierrecode.nl' }
s.source = { :git => 'https://github.com/edwinveger/SCKTEffects.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'SCKTEffectsCore/Classes/**/*'
end