-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFormView.podspec
More file actions
20 lines (15 loc) · 930 Bytes
/
FormView.podspec
File metadata and controls
20 lines (15 loc) · 930 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |spec|
spec.name = "FormView"
spec.version = "0.0.1"
spec.summary = "An easy-to-use SwiftUI library for working with a group of TextFields."
spec.description = "Automatic transition between TextFields upon submission, validation of TextFields based on specified rules and prevention of incorrect input based on specified rules"
spec.homepage = "https://gitlab.com/mobileup/mobileup/development-ios/test-projects/formview"
spec.license = "MIT"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "MobileUp iOS Team" => "hello@mobileup.ru" }
spec.platform = :ios, "15.0"
spec.ios.frameworks = 'SwiftUI'
spec.swift_version = ['5']
spec.source = { :git => 'https://gitlab.com/mobileup/mobileup/development-ios/test-projects/formview', :tag => spec.version.to_s }
spec.source_files = "Sources/", "Sources/**/*.{swift}"
end