ReCaptcha/Example/Podfile

34 lines
647 B
Ruby

platform :ios, 8.3
use_frameworks!
inhibit_all_warnings!
target 'ReCaptcha_Example' do
pod 'ReCaptcha/RxSwift', :path => '../'
pod 'RxCocoa', '~> 4.3'
pod 'SwiftLint', '~> 0.27'
target 'ReCaptcha_Tests' do
inherit! :search_paths
pod 'AppSwizzle', '~> 1.3'
pod 'RxBlocking', '~> 4.0'
end
target 'ReCaptcha_UITests' do
inherit! :search_paths
end
end
post_install do |i|
target = File.join(Dir.pwd, "../.git/hooks/pre-push")
unless File.symlink?(target)
puts "Installing git hook for pre-push"
begin
File.symlink(File.join(Dir.pwd, "../pre-push.sh"), target)
rescue => exc
end
end
end