-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFriendlyCaptcha.podspec
33 lines (27 loc) · 1.55 KB
/
FriendlyCaptcha.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
#
# Be sure to run `pod lib lint FriendlyCaptcha.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'FriendlyCaptcha'
s.version = '1.0.0'
s.summary = 'An iOS SDK for FriendlyCaptcha, a privacy-first bot protection service.'
s.description = <<-DESC
Friendly Captcha is a service that protects websites from bots and abuse
in a privacy-friendly and accessible way. This SDK is the official
iOS integration for Friendly Captcha.
DESC
s.homepage = 'https://github.com/FriendlyCaptcha/friendly-captcha-ios'
s.screenshots = 'https://raw.githubusercontent.com/FriendlyCaptcha/friendly-captcha-ios/main/screenshots/disabled.png', 'https://raw.githubusercontent.com/FriendlyCaptcha/friendly-captcha-ios/main/screenshots/enabled.png'
s.license = { :type => 'MPL 2.0', :file => 'FriendlyCaptcha/LICENSE' }
s.author = { 'Friendly Captcha Engineering' => '[email protected]' }
s.source = { :git => 'https://github.com/FriendlyCaptcha/friendly-captcha-ios.git', :tag => s.version.to_s }
s.readme = "https://raw.githubusercontent.com/FriendlyCaptcha/friendly-captcha-ios/refs/tags/#{s.version.to_s}/README.md"
s.ios.deployment_target = '9.0'
s.swift_version = '4.0'
s.source_files = 'FriendlyCaptcha/Classes/**/*'
s.frameworks = 'UIKit', 'WebKit'
end