-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAtomicable.podspec
33 lines (22 loc) · 1.21 KB
/
Atomicable.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
28
29
30
31
32
33
Pod::Spec.new do |s|
s.name = "Atomicable"
s.version = "1.0.0"
s.summary = "Atomic property wrappers for thread-safety and peace of mind"
s.screenshot = "https://github.com/BellAppLab/Atomicable/raw/main/Images/Atomicable.png"
s.description = <<-DESC
Atomicable is a handy property wrapper that makes modifying properties an atomic operation via the use of locks.
Adapted from and inspired by [Mattt](https://github.com/mattgallagher/CwlUtils).
DESC
s.homepage = "https://github.com/BellAppLab/Atomicable"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Bell App Lab" => "[email protected]" }
s.social_media_url = "https://twitter.com/BellAppLab"
s.ios.deployment_target = "10.0"
s.tvos.deployment_target = "10.0"
s.watchos.deployment_target = "3.0"
s.osx.deployment_target = "10.12"
s.swift_versions = ['4.2', '5.0', '5.1', '5.2', '5.3']
s.module_name = 'Atomicable'
s.source = { :git => "https://github.com/BellAppLab/Atomicable.git", :tag => "#{s.version}" }
s.source_files = "Sources/Atomicable"
end