-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMaterialForm.podspec
More file actions
21 lines (19 loc) · 1.07 KB
/
MaterialForm.podspec
File metadata and controls
21 lines (19 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'MaterialForm'
s.version = '0.9.7'
s.summary = 'Material UI Text Field for iOS and tvOS. Easy to use from IB.'
s.description = <<-DESC
Defines reusable and observable Material text field component for iOS and tvOS. Easy to use from IB.
DESC
s.homepage = 'https://github.com/GirAppe/MaterialForm.git'
s.screenshots = 'https://raw.githubusercontent.com/GirAppe/MaterialForm/0.9.7/material-form-light.gif', 'https://raw.githubusercontent.com/GirAppe/MaterialForm/0.9.7/material-form-dark.gif'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Andrzej Michnia' => 'amichnia@gmail.com' }
s.source = { :git => 'https://github.com/GirAppe/MaterialForm.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.tvos.deployment_target = '10.0'
s.preserve_paths = '*'
s.swift_versions = ['5.0', '5.1.2', '5.2.2']
s.source_files = 'Sources/MaterialForm/**/*'
s.frameworks = 'UIKit'
end