-
Notifications
You must be signed in to change notification settings - Fork 128
/
OctoKit.swift.podspec
22 lines (22 loc) · 1.04 KB
/
OctoKit.swift.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "OctoKit.swift"
s.version = "0.10.1"
s.summary = "A Swift API Client for GitHub and GitHub Enterprise"
s.description = <<-DESC
You are looking at the A Swift API Client for GitHub and GitHub Enterprise.
This is very unofficial and not maintained by Github.
DESC
s.homepage = "https://github.com/nerdishbynature/octokit.swift"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Piet Brauer" => "piet@nerdishbynature.com" }
s.source = { :git => "https://github.com/nerdishbynature/octokit.swift.git", :tag => s.version.to_s }
s.social_media_url = "https://twitter.com/pietbrauer"
s.module_name = "Octokit"
s.dependency "NBNRequestKit", "~> 3.2"
s.requires_arc = true
s.source_files = "OctoKit/*.swift"
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
end