forked from mobileforming/WiremockClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWiremockClient.podspec
More file actions
19 lines (16 loc) · 817 Bytes
/
WiremockClient.podspec
File metadata and controls
19 lines (16 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'WiremockClient'
s.version = '3.0.0'
s.summary = 'An HTTP client for Wiremock standalone instances'
s.description = <<-DESC
WiremockClient is an HTTP client that allows users to interact with a standalone Wiremock instance from within an Xcode project.
DESC
s.homepage = 'https://github.com/mobileforming/WiremockClient'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Ted Rothrock' => 'theodore.rothrock@gmail.com' }
s.source = { :git => 'https://github.com/mobileforming/WiremockClient.git', :tag => '3.0.0' }
s.ios.deployment_target = '14.0'
s.osx.deployment_target = '11.0'
s.swift_versions = ['4.0', '5.0']
s.source_files = 'Sources/**/*'
end