forked from ionic-team/ion-ios-filesystem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIONFilesystemLib.podspec
More file actions
22 lines (17 loc) · 1.08 KB
/
Copy pathIONFilesystemLib.podspec
File metadata and controls
22 lines (17 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |spec|
spec.name = package['name']
spec.version = package['version']
spec.summary = package['description']
spec.description = <<-DESC
A Swift library for iOS that provides access to the native file system. With this library, you can write and read files in different locations, manage directories, and more.
DESC
spec.homepage = 'https://github.com/ionic-team/ion-ios-filesystem'
spec.license = { :type => package['license'], :file => 'LICENSE' }
spec.author = { package['author'] => package['email'] }
spec.source = { :http => "https://github.com/ionic-team/ion-ios-filesystem/releases/download/#{spec.version}/IONFilesystemLib.zip", :type => "zip" }
spec.vendored_frameworks = "IONFilesystemLib.xcframework"
spec.ios.deployment_target = '14.0'
spec.swift_versions = ['5.0', '5.1', '5.2', '5.3', '5.4', '5.5', '5.6', '5.7', '5.8', '5.9']
end