-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathChangeset.podspec
More file actions
18 lines (18 loc) · 855 Bytes
/
Changeset.podspec
File metadata and controls
18 lines (18 loc) · 855 Bytes
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.2.0'
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 = '5.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