-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAlamoRecord.podspec
More file actions
24 lines (19 loc) · 1.13 KB
/
AlamoRecord.podspec
File metadata and controls
24 lines (19 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = 'AlamoRecord'
s.version = '2.3.0'
s.summary = 'An elegant Alamofire wrapper inspired by ActiveRecord.'
s.description = <<-DESC
AlamoRecord is a powerful yet simple framework that eliminates the often complex networking layer that exists between your networking framework and your application. AlamoRecord uses the power of AlamoFire, AlamofireObjectMapper and the concepts behind the ActiveRecord pattern to create a networking layer that makes interacting with your API easier than ever.
DESC
s.homepage = 'https://github.com/tunespeak/AlamoRecord'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Tunespeak' => 'daltonhint4@gmail.com' }
s.source = { :git => 'https://github.com/tunespeak/AlamoRecord.git', :tag => s.version.to_s }
s.swift_version = '5.1'
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '3.0'
s.source_files = 'AlamoRecord/Classes/**/*'
s.dependency 'Alamofire', '5.2.2'
end