-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDevComponents.podspec
More file actions
21 lines (14 loc) · 886 Bytes
/
DevComponents.podspec
File metadata and controls
21 lines (14 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'DevComponents'
s.version = '0.0.1'
s.summary = 'A short description of Network.'
s.swift_version = '5.0'
s.description = "this is a group of extensions for apps, used as private pod, it contains extensions for Foundation, UIKit, AVFoundation,...etc you could add to these extensions whatever you want while you develop your app"
s.homepage = 'https://github.com/abozaid-ibrahim/DevPods.git'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'abozaid-ibrahim' => 'abozaid.ibrahim11@gmail.com' }
s.source = { :git => 'https://github.com/abozaid-ibrahim/DevPods.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.source_files = 'DevComponents/*.{swift,h,m}'
# s.dependency 'DevExtensions'#, :path=> "../DevExtensions"
end