-
Notifications
You must be signed in to change notification settings - Fork 66
/
Swindler.podspec
35 lines (26 loc) · 1.31 KB
/
Swindler.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
34
35
Pod::Spec.new do |s|
s.name = 'Swindler'
s.version = '0.0.5'
s.summary = 'macOS window management framework, written in Swift'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
Swindler makes it easy to write window managers for macOS in Swift with a type-safe,
promise-based API on top of the low-level accessibility APIs.
DESC
s.homepage = 'https://github.com/tmandry/Swindler'
s.documentation_url = "https://tmandry.github.io/Swindler/docs/#{s.version.to_s}"
s.license = { type: 'MIT', file: 'LICENSE' }
s.author = { 'Tyler Mandry' => '[email protected]' }
s.social_media_url = 'http://twitter.com/tmandry'
s.platform = :osx, '10.12'
s.swift_version = '5.0'
s.source = { git: 'https://github.com/tmandry/Swindler.git', tag: s.version.to_s }
s.source_files = 'Sources', 'Sources/**/*.{h,swift}'
s.dependency 'PromiseKit/CorePromise', '~> 6.0'
s.dependency 'AXSwift', '0.2.3'
s.frameworks = 'Cocoa'
end