-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathEDHFinder.podspec
41 lines (35 loc) · 1.51 KB
/
EDHFinder.podspec
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
35
36
37
38
39
40
41
#
# Be sure to run `pod lib lint EDHFinder.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "EDHFinder"
s.version = "0.1.2"
s.summary = "File management interface for iOS."
s.description = <<-DESC
Accessing file system with table view, developed for Edhita.
# Features
* Exprole documents
* Create file or directory
* Destroy, rename, duplicate, move
* Download with URL
DESC
s.homepage = "https://github.com/tnantoka/EDHFinder"
s.screenshots = "https://raw.githubusercontent.com/tnantoka/EDHFinder/master/screenshot.png"
s.license = 'MIT'
s.author = { "tnantoka" => "tnantoka@bornneet.com" }
s.source = { :git => "https://github.com/tnantoka/EDHFinder.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/tnantoka'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes'
s.resource = 'Pod/Assets/EDHFinder.bundle'
s.dependency 'FCFileManager', '~> 1.0'
s.dependency 'FontAwesomeKit', '~> 2.2'
s.dependency 'MGSwipeTableCell', '~> 1.1'
s.dependency 'EDHUtility', '~> 0.1'
end