-
Notifications
You must be signed in to change notification settings - Fork 51
/
Criollo.podspec
27 lines (18 loc) · 1.02 KB
/
Criollo.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Pod::Spec.new do |s|
s.name = "Criollo"
s.version = "1.1.0"
s.license = "MIT"
s.summary = "A powerful Cocoa web framework and HTTP server for macS, iOS and tvOS."
s.homepage = "https://criollo.io/"
s.author = { "Cătălin Stan" => "[email protected]" }
s.social_media_url = "http://twitter.com/criolloio"
s.source = { :git => "https://github.com/thecatalinstan/Criollo.git", :tag => s.version, :submodules => true }
s.module_name = "Criollo"
s.requires_arc = true
s.dependency "CocoaAsyncSocket", "~> 7.6.5"
s.source_files = "Sources/Criollo/Headers/Criollo/*", "Sources/Criollo/*.{h,m}", "Sources/Criollo/{HTTP,FCGI,Routing,Extensions}/*.{h,m}"
s.public_header_files = "Sources/Criollo/Headers/Criollo/*"
s.osx.deployment_target = "10.10"
s.ios.deployment_target = "12.0"
s.tvos.deployment_target = "12.0"
end