forked from finn-no/Diffuse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDiffuse.podspec
More file actions
24 lines (24 loc) · 1.01 KB
/
Diffuse.podspec
File metadata and controls
24 lines (24 loc) · 1.01 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
Pod::Spec.new do |s|
s.name = 'Diffuse'
s.summary = 'A library that aims to simplify the diffing of two collections'
s.version = '0.1.0'
s.author = 'FINN.no'
s.homepage = 'https://github.com/finn-no/Diffuse'
s.social_media_url = 'https://twitter.com/FINN_tech'
s.source = { :git => 'https://github.com/finn-no/Diffuse.git', :tag => s.version }
s.description = <<-DESC
Diffuse is library that aims to simplify the diffing of two collections. After diffing you get to know:
- indices where insertion has happened
- indices that has been removed
- indices that has moved
- indices that has been updated
DESC
s.license = 'MIT'
s.platforms = { :ios => '11.2', :osx => '10.14' }
s.requires_arc = true
s.swift_version = '5.0'
s.ios.source_files = 'Diffuse/{iOS,Shared}/**/*'
s.ios.frameworks = 'Foundation', 'UIKit'
s.osx.source_files = 'Diffuse/Shared/**/*'
s.osx.frameworks = 'Foundation'
end