This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-cli/assets-lib/example/iOS/Podfile

27 lines
649 B
Plaintext
Raw Normal View History

2021-08-04 15:32:19 +08:00
require "json"
package = JSON.parse(File.read(File.join(__dir__, "../../package.json")))
2022-07-13 16:36:54 +08:00
version = package['peerDependencies']["doric"]
2021-08-04 15:32:19 +08:00
version = version.gsub('^','').gsub('>=','')
source 'https://cdn.cocoapods.org/'
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'Example' do
# Comment the next line if you don't want to use dynamic frameworks
use_modular_headers!
# Pods for TemplateLibrary
pod 'DoricCore', "#{version}"
pod 'DoricDevkit', "#{version}"
pod 'SDWebImage'
pod 'SDWebImageWebPCoder'
pod 'PINCache'
pod '__$RawName__', :path => '../../'
end