-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDiffing.podspec
22 lines (18 loc) · 885 Bytes
/
Diffing.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'Diffing'
s.version = '0.5.0'
s.summary = 'A small framework designed to determine the differences between two collections.'
s.description = <<-DESC
Diffing is a small framework designed to make determining the differences, or edits, between two collections as simple as possible.
DESC
s.homepage = 'https://github.com/wmcginty/Diffing'
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.author = { 'William McGinty' => 'mcgintw@gmail.com' }
s.source = { :git => 'https://github.com/wmcginty/Diffing.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.tvos.deployment_target = '11.0'
s.macos.deployment_target = '10.13'
s.swift_version = '5.5'
s.source_files = 'Sources/**/*'
s.framework = 'Foundation'
end