FLEX.podspec 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. Pod::Spec.new do |spec|
  2. spec.name = "FLEX"
  3. spec.version = "3.1.2"
  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,m,mm}"
  33. spec.frameworks = [ "Foundation", "UIKit", "CoreGraphics", "ImageIO", "QuartzCore", "WebKit", "Security" ]
  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/**/FLEXManager.h", "Classes/FLEX.h" ]
  38. end