-
Notifications
You must be signed in to change notification settings - Fork 4
/
ASDebugger.podspec
35 lines (28 loc) · 1.24 KB
/
ASDebugger.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#
# Be sure to run `pod lib lint ASDebugger.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "ASDebugger"
s.version = "0.0.9"
s.summary = "ASDebugger is a remote debugging toolset for your native iOS app."
s.description = <<-DESC
Remote debugging network requests, effortlessly Mock Data, Intergrated with iOS easily, without any tooling involved like Charles.
DESC
s.homepage = "https://github.com/AppScaffold/ASDebugger"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "square" => "[email protected]" }
s.source = { :git => "https://github.com/AppScaffold/ASDebugger.git", :tag => s.version }
s.platform = :ios, '9.0'
s.requires_arc = true
s.dependency 'SocketRocket', '~> 0.5.1'
s.default_subspec = 'Core'
s.subspec 'Core' do |c|
c.source_files = 'Pod/Classes/**/*'
c.public_header_files = "Pod/Classes/**/*.h"
end
end