-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExampleCore.podspec
More file actions
36 lines (20 loc) · 816 Bytes
/
Copy pathExampleCore.podspec
File metadata and controls
36 lines (20 loc) · 816 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
28
29
30
31
32
33
34
35
36
Pod::Spec.new do |s|
s.name = "ExampleCore"
s.version = "0.0.1"
s.summary = ""
s.description = <<-DESC
Here is some description for Core Example
DESC
s.homepage = "https://github.com/DSanzh/ExampleCore"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Sanzh" => "dauylov.sanzhar@gmail.com" }
s.summary = 'Core logic of example'
s.social_media_url = "https://twitter.com/dauylov_sanzhar/"
s.platform = :ios, "10.0"
s.source = { :git => "https://github.com/DSanzh/ExampleCore.git", :tag => s.version }
s.frameworks = 'UIKit'
s.source_files = 'ExampleCore/CustomClasses/**/*.{c,h,m,hh,swift}'
s.ios.deployment_target = '10.0'
s.swift_version = '4.1'
s.dependency "EasyPeasy"
end