forked from escoz/QuickDialog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuickDialog.podspec
More file actions
46 lines (40 loc) · 1.72 KB
/
QuickDialog.podspec
File metadata and controls
46 lines (40 loc) · 1.72 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
37
38
39
40
41
42
43
44
45
46
#
# Be sure to run `pod lib lint NAME.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "QuickDialog"
s.version = "2.0.0"
s.summary = "Quick and easy dialog screens for iOS."
s.description = <<-DESC
QuickDialog allows you to create HIG-compliant iOS forms for your apps without
having to directly deal with UITableViews, delegates and data sources. Fast
and efficient, you can create forms with multiple text fields, or with
thousands of items with no sweat!
DESC
s.homepage = "http://escoz.com/quickdialog"
#s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'Apache License, Version 2.0'
s.author = { "Eduardo Scoz" => "eduardoscoz@gmail.com" }
s.source = { :git => "https://github.com/escoz/QuickDialog.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/escoz'
s.platform = :ios, '7.0'
s.requires_arc = true
s.default_subspec = "Core"
s.subspec "Core" do |sp|
sp.source_files = "Classes/Core/**/*.{h,m}"
# sp.resources = 'Assets/Core/*.png'
end
s.subspec "Forms" do |sp|
sp.source_files = "Classes/Forms/**/*.{h,m}"
sp.dependency 'QuickDialog/Core'
end
s.subspec "Extras" do |sp|
sp.source_files = "Classes/Extras/**/*.{h,m}"
sp.dependency 'QuickDialog/Core'
end
# s.public_header_files = 'Classes/**/*.h'
# s.frameworks = 'SomeFramework', 'AnotherFramework'
end