forked from gigigoapps/gigigo-ios-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGIGLibrary.podspec
More file actions
36 lines (30 loc) · 1.37 KB
/
Copy pathGIGLibrary.podspec
File metadata and controls
36 lines (30 loc) · 1.37 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
25
26
27
28
29
30
31
32
33
34
35
36
#
# Be sure to run `pod lib lint Orchextra.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'GIGLibrary'
s.version = '3.1.3'
s.summary = 'Main library for Gigigo iOS projects.'
s.swift_version = '4.2.0'
s.description = <<-DESC
# What is included
- GIGNetwork: classes to manage network requests.
- SwiftNetwork: Swift classes to manage gigigo's requestst. Standard Gigigo JSON is parsed by default.
- GIGLayout: some functions to help with autolayout.
- GIGUtils: a lot of extensions on foundation classes.
- GIGScanner: QR scanner using native iOS API
- GIGLocation: Wrapper on CLLocation API
- SlideMenu: A basic lateral slide menu
- ProgressPageControl: A page control with a progress bar in the selected page.
DESC
s.homepage = 'https://github.com/gigigoapps/gigigo-ios-lib'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'jcarlosestela' => 'jose.estela@gigigo.com' }
s.source = { :git => 'https://github.com/gigigoapps/gigigo-ios-lib.git', :tag => 'v' + s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'Source/**/*.{h,m,swift}'
end