-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEasyActionBuilder.podspec
29 lines (25 loc) · 1.27 KB
/
EasyActionBuilder.podspec
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
#
# Be sure to run `pod spec lint EasyActionBuilder.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |spec|
spec.name = "EasyActionBuilder"
spec.version = "0.0.1"
spec.summary = "Easy way to create alerts in iOS"
spec.description = "You can create alerts easily with EasyActionBuilder"
spec.homepage = "https://github.com/oguzparlak/EasyAction"
spec.license = { :type => "MIT", :text => "MIT License. Copyright (c) 2019 Oguz Parlak" }
spec.author = { "Oguz Parlak" => "oguz.parlak@ozu.edu.tr" }
spec.platform = :ios, "9.0"
spec.ios.deployment_target = "9.0"
spec.source = { :git => "https://github.com/oguzparlak/EasyAction.git", :tag => spec.version.to_s }
spec.source_files = 'EasyAction/Lib/*.swift', 'EasyAction/Extensions/*.swift'
spec.frameworks = "UIKit"
spec.requires_arc = true
spec.swift_versions = ['4.0', '5.0']
# spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
# spec.dependency "JSONKit", "~> 1.4"
end