-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftAIRouter.podspec
More file actions
21 lines (18 loc) · 870 Bytes
/
Copy pathSwiftAIRouter.podspec
File metadata and controls
21 lines (18 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'SwiftAIRouter'
s.version = '1.0.0'
s.summary = 'Vendor-neutral AI routing for iOS Swift apps.'
s.description = <<-DESC
SwiftAIRouter is a production-quality Swift library that routes AI requests
across multiple providers (OpenAI, Anthropic, Google, or custom backends)
using one clean, strongly typed API.
DESC
s.homepage = 'https://github.com/Ahsan-Pitafi/SwiftAIRouter'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Ahsan Iqbal' => 'ahsan.iqbal.pitafi@gmail.com' }
s.source = { :git => 'https://github.com/Ahsan-Pitafi/SwiftAIRouter.git', :tag => s.version.to_s }
s.ios.deployment_target = '15.0'
s.swift_versions = ['5.9']
s.source_files = 'Sources/SwiftAIRouter/**/*.swift'
s.frameworks = 'Foundation'
end