-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSQDifferenceKit.podspec
More file actions
32 lines (24 loc) · 1009 Bytes
/
SQDifferenceKit.podspec
File metadata and controls
32 lines (24 loc) · 1009 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
25
26
27
28
29
30
#
# Be sure to run `pod lib lint SQDifferenceKit.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.platform = :ios
s.ios.deployment_target = '9.0'
s.name = "SQDifferenceKit"
s.summary = "Base data to implementig as UITableCell/UICollectionView\'s data."
s.requires_arc = true
s.version = "1.0.1"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { 'lab-devoloper' => 'ivan.michaylovsky@sequenia.com' }
s.homepage = "https://github.com/sequenia/SQDifferenceKit"
s.source = { :git => 'https://github.com/sequenia/SQDifferenceKit.git',
:tag => "#{s.version}" }
s.framework = "UIKit"
s.dependency 'DifferenceKit', '~> 1.2.0'
s.swift_version = "4.2"
s.source_files = "Sources/**/*.{swift}"
end