-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHandyStorage.podspec
More file actions
20 lines (17 loc) · 881 Bytes
/
HandyStorage.podspec
File metadata and controls
20 lines (17 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |spec|
spec.name = "HandyStorage"
spec.version = "2.1.0"
spec.summary = "If you wanna get rid of Huge Databases for your app, just install HandyStorage and enjoy the simplicity."
spec.description = <<-DESC
HandyStorage is a wrapper over UserDefaults which act like a LightStorage and work with Codable classes...Trust me it's really handy 😊😊 -shndrs
DESC
spec.homepage = "https://github.com/shndrs/HandyStorage"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "shndrs" => "sahandraeisi1994@gmail.com" }
spec.ios.deployment_target = "13.0"
spec.osx.deployment_target = '10.15'
spec.swift_version = "6"
spec.source = { :git => "https://github.com/shndrs/HandyStorage.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/**/*.swift"
spec.exclude_files = "Classes/Exclude"
end