forked from devlucky/Kakapo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kakapo.podspec
26 lines (21 loc) · 1.12 KB
/
Kakapo.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
Pod::Spec.new do |s|
s.name = "Kakapo"
s.version = "0.1.0"
s.summary = "Dynamically Mock server behaviors and responses."
s.description = <<-DESC
Dynamically Mock server behaviors and responses.
Kakapo allows you to replicate your backend APIs and logic.
With Kakapo you can easily prototype your application based on your API specifications.
While usually network mocks involve using static json files Kakapo let you create Swift structs/classes/enums that are automatically serialized to JSON.
DESC
s.homepage = "https://github.com/devlucky/Kakapo"
s.license = 'MIT'
s.author = { "Alex Manzella" => "[email protected]", "Joan Romano" => "[email protected]" }
s.source = { :git => "https://github.com/devlucky/Kakapo.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/devluckyness'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.source_files = 'Source/**/*'
end