forked from jessesquires/Foil
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFoil.podspec
More file actions
23 lines (18 loc) · 692 Bytes
/
Foil.podspec
File metadata and controls
23 lines (18 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'Foil'
s.version = '3.0.0'
s.license = 'MIT'
s.summary = 'A lightweight property wrapper for UserDefaults'
s.homepage = 'https://github.com/jessesquires/Foil'
s.documentation_url = 'https://jessesquires.github.io/Foil'
s.social_media_url = 'https://twitter.com/jesse_squires'
s.author = 'Jesse Squires'
s.source = { :git => 'https://github.com/jessesquires/Foil.git', :tag => s.version }
s.source_files = 'Sources/*.swift'
s.swift_version = '5.5'
s.ios.deployment_target = '13.0'
s.tvos.deployment_target = '13.0'
s.watchos.deployment_target = '6.0'
s.osx.deployment_target = '11.0'
s.requires_arc = true
end