-
Notifications
You must be signed in to change notification settings - Fork 8
/
KSSwipeStack.podspec
48 lines (37 loc) · 1.94 KB
/
KSSwipeStack.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
38
39
40
41
42
43
44
45
46
47
48
#
# Be sure to run `pod lib lint KSSwipeStack.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 http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'KSSwipeStack'
s.version = '0.4.4'
s.summary = 'A Swift card swiping library created by Kicksort Consulting AB'
# 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
KSSwipeStack is a lightweight card swiping library for iOS written in Swift.
KSSwipeStack handles any data model and the design/layout of the swipe cards are completely customizable.
Using the options provided you can customize the behavior and animations used in the swipe stack.
DOCS: https://github.com/Kicksort/KSSwipeStack
DESC
s.homepage = 'https://github.com/Kicksort/KSSwipeStack'
s.screenshots = 'https://camo.githubusercontent.com/0c98618dc067d31bf4a0126d408082f3911d4181/68747470733a2f2f6d656469612e67697068792e636f6d2f6d656469612f7738426e6d736a634a79464b552f67697068792e676966'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Simon Arneson' => 'arneson@kicksort.se' }
s.source = { :git => 'https://github.com/kicksort/KSSwipeStack.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.swift_version = '4.0'
s.source_files = 'KSSwipeStack/Classes/**/*'
# s.resource_bundles = {
# 'KSSwipeStack' => ['KSSwipeStack/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
s.dependency 'RxSwift'
end