-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathOptionMenu.podspec
More file actions
25 lines (18 loc) · 1.11 KB
/
OptionMenu.podspec
File metadata and controls
25 lines (18 loc) · 1.11 KB
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
Pod::Spec.new do |spec|
spec.name = 'OptionMenu'
spec.version = '2.2.0'
spec.summary = 'An option menu contains more than a style and theme (Material Bottom Sheet, PopOver, Horizontal) to view in iOS.'
spec.description = 'It integrates with material design style and other styles to be easily configured for viewing as suits your App.'
spec.author = { 'Amr Elsayed' => 'amrelsayed.mohamed@gmail.com' }
spec.platform = :ios, '10.0'
spec.source = { :path => '.' }
spec.homepage = 'https://github.com/amr-abdelfattah/iOS-OptionMenu'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.source = { :git => 'https://github.com/amr-abdelfattah/iOS-OptionMenu.git', :tag => 'v' + spec.version.to_s }
spec.ios.deployment_target = '10.0'
spec.source_files = 'OptionMenu/Classes/**/*'
spec.dependency 'MaterialComponents/BottomSheet'
spec.dependency 'Localize-Swift'
spec.swift_version = '5.1'
end