FLEX.podspec 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. Pod::Spec.new do |spec|
  2. spec.name = "FLEX"
  3. spec.version = "4.3.0"
  4. spec.summary = "A set of in-app debugging and exploration tools for iOS"
  5. spec.description = <<-DESC
  6. - Inspect and modify views in the hierarchy.
  7. - View Detailed network request history.
  8. - See the properties and ivars on any object.
  9. - Dynamically modify many properties and ivars.
  10. - Dynamically call instance and class methods.
  11. - Access any live object via a scan of the heap.
  12. - See system log messages (i.e. from `NSLog()`).
  13. - View the file system within your app's sandbox.
  14. - Explore all classes in your app and linked systems frameworks (public and private).
  15. - Quickly access useful objects such as `[UIApplication sharedApplication]`, the app delegate, the root view controller on the key window, and more.
  16. - Dynamically view and modify `NSUserDefaults` values.
  17. DESC
  18. spec.homepage = "https://github.com/Flipboard/FLEX"
  19. spec.screenshots = [ "http://engineering.flipboard.com/assets/flex/basic-view-exploration.gif",
  20. "http://engineering.flipboard.com/assets/flex/advanced-view-editing.gif",
  21. "http://engineering.flipboard.com/assets/flex/heap-browser.gif",
  22. "http://engineering.flipboard.com/assets/flex/file-browser.gif",
  23. "http://engineering.flipboard.com/assets/flex/nsuserdefaults-editor.gif",
  24. "http://engineering.flipboard.com/assets/flex/system-libraries-browser.gif",
  25. "http://engineering.flipboard.com/assets/flex/flex-readme-reverse-1.png",
  26. "http://engineering.flipboard.com/assets/flex/flex-readme-reverse-2.png" ]
  27. spec.license = { :type => "BSD", :file => "LICENSE" }
  28. spec.author = { "Tanner Bennett" => "tannerbennett@me.com" }
  29. spec.social_media_url = "https://twitter.com/NSExceptional"
  30. spec.platform = :ios, "9.0"
  31. spec.source = { :git => "https://github.com/Flipboard/FLEX.git", :tag => "#{spec.version}" }
  32. spec.source_files = "Classes/**/*.{h,c,m,mm}"
  33. spec.frameworks = [ "Foundation", "UIKit", "CoreGraphics", "ImageIO", "QuartzCore", "WebKit", "Security", "SceneKit" ]
  34. spec.libraries = [ "z", "sqlite3" ]
  35. spec.requires_arc = true
  36. spec.compiler_flags = "-Wno-unsupported-availability-guard -Wno-strict-prototypes"
  37. spec.public_header_files = [ "Classes/*.h", "Classes/Manager/*.h", "Classes/Toolbar/*.h",
  38. "Classes/GlobalStateExplorers/Globals/FLEXGlobalsEntry.h",
  39. "Classes/Core/**/*.h", "Classes/Utility/Runtime/Objc/**/*.h",
  40. "Classes/ObjectExplorers/**/*.h", "Classes/Editing/**/*.h",
  41. "Classes/Utility/FLEXMacros.h", "Classes/Utility/Categories/*.h",
  42. "Classes/Utility/FLEXAlert.h", "Classes/Utility/FLEXResources.h" ]
  43. end