From e61097e4c244044f0106a15d0f67bfb7dadee125 Mon Sep 17 00:00:00 2001 From: Aditya Tirodkar Date: Wed, 9 Sep 2015 01:18:59 -0700 Subject: [PATCH] Added PodSpec --- fishhook.podspec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 fishhook.podspec diff --git a/fishhook.podspec b/fishhook.podspec new file mode 100644 index 0000000..7bf7da3 --- /dev/null +++ b/fishhook.podspec @@ -0,0 +1,16 @@ +Pod::Spec.new do |s| + s.platform = :ios + s.name = "fishhook" + s.version = "0.0.1" + s.summary = "A library that enables dynamically rebinding symbols in Mach-O binaries running on iOS." + + s.description = <<-DESC + fishhook is a very simple library that enables dynamically rebinding symbols + in Mach-O binaries running on iOS in the simulator and on device. + DESC + s.license = { :type => "BSD", :file => "LICENSE" } + s.author = { "Facebook, Inc." => "https://github.com/facebook/fishhook" } + s.homepage = "https://github.com/facebook/fishhook" + s.source = { :git => "https://github.com/facebook/fishhook.git", :commit => "9086d2fa8d2b1066dc5c0cab196939343ea899b6" } + s.source_files = "fishhook.*" +end \ No newline at end of file