forked from 3lvis/Form
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Form.podspec
executable file
·38 lines (37 loc) · 1.3 KB
/
Form.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
36
37
38
Pod::Spec.new do |s|
s.name = "Form"
s.version = "3.15.0"
s.summary = "JSON driven form"
s.homepage = "https://github.com/3lvis/Form"
s.license = {
:type => 'MIT',
:file => 'LICENSE.md'
}
s.author = { "Elvis Nuñez" => "elvisnunez@me.com" }
s.social_media_url = "http://twitter.com/3lvis"
s.platform = :ios, '9.0'
s.source = {
:git => 'https://github.com/3lvis/Form.git',
:tag => s.version.to_s
}
s.resource_bundles = {
'Form' => ['Assets/*.{png}']
}
s.source_files = 'Source/**/*.{h,m}'
s.frameworks = 'Foundation'
s.requires_arc = true
s.dependency 'HYP8601', '~> 0.7.2'
s.dependency 'HYPMathParser', '~> 0.4.1'
s.dependency 'HYPNorwegianAccountNumber', '~> 1.2.1'
s.dependency 'HYPNorwegianSSN', '~> 1.10.2'
s.dependency 'NSDictionary-ANDYSafeValue', '~> 0.3'
s.dependency 'NSDictionary-HYPNestedAttributes', '~> 0.4.1'
s.dependency 'NSJSONSerialization-ANDYJSONFile', '~> 1.1'
s.dependency 'NSObject-HYPTesting', '~> 1.2.1'
s.dependency 'NSString-HYPContainsString', '~> 0.1'
s.dependency 'NSString-HYPFormula', '~> 1.6.2'
s.dependency 'NSString-HYPRelationshipParser', '~> 0.4.1'
s.dependency 'NSString-HYPWordExtractor', '~> 1.2'
s.dependency 'NSString-ZENInflections', '~> 1.2'
s.dependency 'UIViewController-HYPKeyboardToolbar', '~> 0.1'
end