-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBLActionController.podspec
More file actions
34 lines (29 loc) · 1.4 KB
/
BLActionController.podspec
File metadata and controls
34 lines (29 loc) · 1.4 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
26
27
28
29
30
31
32
33
34
#
# Be sure to run `pod lib lint BLActionController.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'BLActionController'
s.version = '0.2.0'
s.summary = 'BLActionController is an extension to BLListViewController to provide some actions using SwipeCellKit'
s.description = <<-DESC
BLActionController is an extension to BLListViewController to provide some actions using SwipeCellKit.
Delete, Edit, View basic actions. Also pick from dataSource.
BLMapListController will display items on map and on the list.
DESC
s.homepage = 'https://github.com/batkov/BLActionController'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'batkov' => 'batkov@i.ua' }
s.source = { :git => 'https://github.com/batkov/BLActionController.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/batkov111'
s.platform = :ios, '9.0'
s.framework = 'MapKit'
s.source_files = 'BLActionController/Classes/**/*.{swift}'
s.resources = ['BLActionController/Classes/**/*.{storyboard,xib}']
s.dependency 'BLListViewController'
s.dependency 'SwipeCellKit'
s.dependency 'FBAnnotationClustering'
end