From 23b0f93e896c8601c0d4fead0dbbc4b3445716c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=8A=B2=E9=B9=8F?= Date: Tue, 25 Feb 2020 11:27:02 +0800 Subject: [PATCH] add doric dev kit ios pod --- DoricDevkit.podspec | 20 ++++++++++++++++++++ doric-iOS/Devkit/Classes/ReplaceMe.m | 0 doric-iOS/Example/Podfile | 1 + 3 files changed, 21 insertions(+) create mode 100644 DoricDevkit.podspec create mode 100644 doric-iOS/Devkit/Classes/ReplaceMe.m diff --git a/DoricDevkit.podspec b/DoricDevkit.podspec new file mode 100644 index 00000000..75feb5dc --- /dev/null +++ b/DoricDevkit.podspec @@ -0,0 +1,20 @@ +Pod::Spec.new do |s| + s.name = 'DoricDevkit' + s.version = '0.2.8' + s.summary = 'Doric iOS Devkit' + + s.description = <<-DESC +Doric iOS Devkit for debugging & hotload. + DESC + + s.homepage = 'https://github.com/doric-pub/doric' + s.license = { :type => 'Apache-2.0', :file => 'LICENSE' } + s.author = { 'Jingpeng Wang' => 'jingpeng.wang@outlook.com' } + s.source = { :git => 'https://github.com/doric-pub/doric.git', :tag => s.version.to_s } + + s.ios.deployment_target = '8.0' + + s.source_files = 'doric-iOS/Devkit/Classes/**/*' + + s.public_header_files = 'doric-iOS/Devkit/Classes/**/*.h' +end diff --git a/doric-iOS/Devkit/Classes/ReplaceMe.m b/doric-iOS/Devkit/Classes/ReplaceMe.m new file mode 100644 index 00000000..e69de29b diff --git a/doric-iOS/Example/Podfile b/doric-iOS/Example/Podfile index d74fcf40..566ec1f5 100644 --- a/doric-iOS/Example/Podfile +++ b/doric-iOS/Example/Podfile @@ -4,6 +4,7 @@ target 'Example' do pod 'DoricCore', :path => '../../' + pod 'DoricDevkit', :path => '../../' target 'ExampleTests' do inherit! :search_paths # Pods for testing