-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathSizes.podspec
23 lines (18 loc) · 886 Bytes
/
Sizes.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'Sizes'
s.version = '0.6.0'
s.summary = 'View your app on different device and font sizes.'
s.description = <<-DESC
Sizes lets you view your app on different device and font sizes.
DESC
s.homepage = 'https://github.com/marcosgriselli/Sizes'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = 'Marcos Griselli'
s.source = { :git => 'https://github.com/marcosgriselli/Sizes.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/marcosgriselli'
s.ios.deployment_target = '10.0'
s.source_files = 'Sizes/Classes/**/*.{h,m,swift}'
s.resources = ['Sizes/Classes/ViewControllers/ConfigurationViewController.xib']
s.swift_version = '5.2'
s.swift_versions = ['4.2', '5.0', '5.1']
end