-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRestForIOS.podspec
More file actions
27 lines (21 loc) · 1012 Bytes
/
Copy pathRestForIOS.podspec
File metadata and controls
27 lines (21 loc) · 1012 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
26
27
Pod::Spec.new do |s|
s.name = "RestForIOS"
s.version = "1.0.1"
s.summary = "A simple, easy-to-use library of static functions for accessing RESTful APIs in iOS"
s.description = <<-DESC
RestForIOS
----------
A lightweight and simple, easy-to-use library of static functions for accessing
RESTful APIs in iOS. All the methods are class methods, so functional programming
with this framework is a breeze, as is using these calls in background processes.
Connect to REST APIs in minutes (or hours?).
Fully documented in appledoc.
DESC
s.homepage = "http://github.com/adeeshaek/RestForIOS"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Adeesha Ekanayake" => "adeeshaekanayake@gmail.com" }
s.platform = :ios
s.source = { :git => "https://github.com/adeeshaek/RestForIOS.git", :tag => "1.0.0" }
s.source_files = 'RestForIOS/*.{h,m}'
s.exclude_files = 'Classes/Exclude'
end