-
Notifications
You must be signed in to change notification settings - Fork 4
/
AutoEquatable.podspec
21 lines (17 loc) · 1.02 KB
/
AutoEquatable.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'AutoEquatable'
s.version = '2.4'
s.summary = 'Convenient protocol that allows all types to easily and safely conform to Equatable.'
s.description = <<-DESC
AutoEquatable provides a confenient and future proof way of conforming to Equatable. Compares all of a types properties to evaluate Equatable. There is no risk of forgetting to add new properties to the `==(lhs:rhs:)` operation if more properties are added.
DESC
s.homepage = 'https://github.com/Rivukis/AutoEquatable'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Brian Radebaugh' => '[email protected]' }
s.source = { :git => 'https://github.com/Rivukis/AutoEquatable.git', :tag => s.version.to_s }
s.swift_version = '4.2'
s.ios.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.source_files = 'AutoEquatable.playground/Sources/AutoEquatable.swift'
end