-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSioValueStore.podspec
More file actions
23 lines (21 loc) · 880 Bytes
/
SioValueStore.podspec
File metadata and controls
23 lines (21 loc) · 880 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 = "SioValueStore"
s.version = "0.3.3"
s.summary = "Swift IO"
s.description = <<-DESC
Swift SIO ValueStore library. Provides abstractions for a store, that can implemented via preferences, a file, network requests, etc.
DESC
s.homepage = "https://github.com/buscarini/sio"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "José Manuel Sánchez" => "buscarini@gmail.com" }
s.social_media_url = ""
s.ios.deployment_target = "10.0"
s.osx.deployment_target = "10.11"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "10.0"
s.source = { :git => "https://github.com/buscarini/sio.git", :tag => s.version.to_s }
s.frameworks = "Foundation"
s.dependency 'Sio'
s.dependency 'SioCodec'
s.source_files = "Sources/SioValueStore/**/*"
end