forked from osteslag/Changeset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changeset.podspec
18 lines (18 loc) · 853 Bytes
/
Changeset.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |spec|
spec.name = 'Changeset'
spec.version = '3.1'
spec.license = { :type => 'MIT', :file => 'LICENSE.md' }
spec.homepage = 'https://github.com/osteslag/Changeset'
spec.author = { 'Joachim Bondo' => 'joachim@bondo.net' }
spec.social_media_url = 'https://twitter.com/osteslag'
spec.summary = 'Minimal edits from one collection to another'
spec.description = 'A Swift value type to compute and hold the edits required to go from one CollectionType of Equatable elements to another.'
spec.source = { :git => 'https://github.com/osteslag/Changeset.git', :tag => "v#{spec.version}" }
spec.source_files = 'Sources/*.swift'
spec.requires_arc = true
spec.swift_version = '4.0'
spec.ios.deployment_target = '8.0'
spec.tvos.deployment_target = '9.0'
spec.osx.deployment_target = '10.9'
spec.watchos.deployment_target = '2.0'
end