forked from simonseyer/PAYFormBuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPAYFormBuilder.podspec
35 lines (28 loc) · 1.83 KB
/
PAYFormBuilder.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
30
31
32
33
34
35
Pod::Spec.new do |s|
s.name = "PAYFormBuilder"
s.version = "1.1.0"
s.summary = "Library to create iOS 7 forms with block based syntax"
s.description = <<-DESC
With the PAYFormBuilder you could easily create forms with iOS 7 style. Some of the features are:
* **Easy syntax** - with the block syntax your code is well structured and easy to understand
* **Predefined Styles** - get a seamless iOS 7 feeling without writing one line of styling code
* **Validation** - use validation handling and error message management out of the box
* **Customizable** - change many defaults with UIAppearance or configure each element individually
* **Example app** - get an overview over all posibilities of the lib and see how to get the best out of it
DESC
s.homepage = "https://github.com/paij/PAYFormBuilder"
s.screenshots = ["https://raw.githubusercontent.com/paij/PAYFormBuilder/master/Images/registrationForm3.png",
"https://raw.githubusercontent.com/paij/PAYFormBuilder/master/Images/controls.png",
"https://raw.githubusercontent.com/paij/PAYFormBuilder/master/Images/controls2.png"]
s.license = 'MIT'
s.author = { "Simon Seyer" => "seyer@paij.com" }
s.platform = :ios, '7.0'
s.source = { :git => "https://github.com/paij/PAYFormBuilder.git", :tag => s.version.to_s }
s.source_files = 'PAYFormBuilder/**/*.{h,m}'
s.private_header_files = "PAYFormBuilder/**/*_protected.h", "PAYFormBuilder/privateProtocols/*", "PAYFormBuilder/**/*Protected.h"
s.requires_arc = true
s.ios.frameworks = "UIKit"
s.dependency 'BlocksKit', '~> 2'
s.dependency 'libextobjc', '~> 0.4'
s.dependency 'SZTextView', '~> 1.1'
end