Last active
December 23, 2015 23:59
-
-
Save peterwilli/6713312 to your computer and use it in GitHub Desktop.
Revisions
-
peterwilli revised this gist
Oct 8, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Pod::Spec.new do |s| It is a client library and gateway server combination that uses Chrome Developer Tools on your browser to debug your application's network traffic and managed object contexts. DESC s.author = 'Square' s.source = { :git => 'https://github.com/square/PonyDebugger.git' } s.license = 'Apache License, Version 2.0' # Platform setup -
peterwilli renamed this gist
Sep 26, 2013 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
peterwilli created this gist
Sep 26, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ Pod::Spec.new do |s| s.name = 'PonyDebugger' s.version = '0.3.0' s.summary = 'Remote network and data debugging for your native iOS app using Chrome Developer Tools.' s.homepage = 'https://github.com/square/PonyDebugger' s.description = <<-DESC PonyDebugger is a remote debugging toolset. It is a client library and gateway server combination that uses Chrome Developer Tools on your browser to debug your application's network traffic and managed object contexts. DESC s.author = 'Square' s.source = { :git => 'https://github.com/peterwilli/PonyDebugger.git' } s.license = 'Apache License, Version 2.0' # Platform setup s.requires_arc = true s.platform = :ios, '5.0' s.source_files = 'ObjC/{DerivedSources,PonyDebugger}/**/*.{h,m}' s.dependency 'SocketRocket' # The readme says that it is needed but it lints without s.frameworks = 'CoreData' end