-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Hover.podspec
18 lines (14 loc) · 904 Bytes
/
Hover.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |spec|
spec.name = 'Hover'
spec.version = '2.1.0'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.homepage = 'https://github.com/pedrommcarrasco/Hover'
spec.authors = { 'Pedro Carrasco' => 'https://twitter.com/pedrommcarrasco' }
spec.summary = '🎈 The smartest floating button'
spec.description = "Hover is a draggable floating action button (FAB) inspired by Apple's session Designing Fluid Interfaces & Nathan Gitter's fluid-interfaces. Hover will always stick to the nearest corner to avoid blocking content and allows the user to send it to any other corner with a single swipe."
spec.source = { :git => 'https://github.com/pedrommcarrasco/Hover.git', :tag => spec.version.to_s }
spec.swift_version = '5.0'
spec.ios.deployment_target = '11.0'
spec.source_files = 'Hover/**/*'
spec.exclude_files = "Hover/*.plist"
end