-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathAPIModel.podspec
More file actions
25 lines (21 loc) · 840 Bytes
/
APIModel.podspec
File metadata and controls
25 lines (21 loc) · 840 Bytes
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
Pod::Spec.new do |s|
s.name = "APIModel"
s.module_name = "ApiModel"
s.version = "1.0.0"
s.summary = "Easy API integrations using Realm and Swift"
s.swift_version = '4.2'
s.description = <<-DESC
Easy get up and running with any API, with maximum flexibility,
intuitive boilerplate and a very declarative aproach to API integrations.
DESC
s.homepage = "https://github.com/erkie/ApiModel"
s.license = "MIT"
s.author = { "Erik Rothoff Andersson" => "erik.rothoff@gmail.com" }
s.ios.deployment_target = '8.0'
s.source = { git: "https://github.com/erkie/ApiModel.git", tag: s.version }
s.source_files = "Source/**/*"
s.requires_arc = true
s.dependency "Alamofire", "~> 4.7"
s.dependency "SwiftyJSON", "~> 4.2"
s.dependency "RealmSwift", "~> 3.13"
end