-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathHippolyte.podspec
More file actions
23 lines (16 loc) · 816 Bytes
/
Hippolyte.podspec
File metadata and controls
23 lines (16 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'Hippolyte'
s.version = '1.4.1'
s.swift_version = '5.0'
s.summary = 'HTTP Stubbing in Swift'
s.description = <<-DESC
Easily stub HTTP requests in your tests. Hippolyte makes your tests run fast and reliable without hitting the network.
DESC
s.homepage = 'https://github.com/JanGorman/Hippolyte'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Jan Gorman' => 'gorman.jan@gmail.com' }
s.ios.deployment_target = '15.0'
s.osx.deployment_target = '10.13'
s.source = { :git => 'https://github.com/JanGorman/Hippolyte.git', :tag => s.version}
s.source_files = 'Classes', 'Hippolyte/**/*.swift'
end