-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCleaner.podspec
18 lines (14 loc) · 901 Bytes
/
Cleaner.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'Cleaner'
s.version = '0.1.2'
s.summary = 'This library is useful to clean the directories where the app save content'
s.description = 'The main reason why this project was created, was for simulate the feature that Android devices use to have for cleaning the User Data & Cache. Doind this you can save space in your device and also leave the app as it was when the user install for the very first time (like an uninstall&install)'
s.homepage = 'https://github.com/fjtrujy/ios-cleaner'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Francisco Javier Trujillo Mata' => '[email protected]' }
s.source = { :git => 'https://github.com/fjtrujy/ios-cleaner.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/fjtrujy'
s.ios.deployment_target = '8.0'
s.swift_version = '5.0'
s.source_files = 'Cleaner/*'
end