use_frameworks!
inhibit_all_warnings!
platform :ios, '9.0'
#open source
source 'https://github.com/CocoaPods/Specs.git'
#sour company
source 'git@git.wanmeizhensuo.com:gengmeiios/GMSpecs.git'

target 'GMBase_Example' do
  
  pod 'GMBase', :path => '../'
#  pod 'GMKit', :path => '../../GMKit'
#  pod 'SnapKit', '4.0.0'
  pod 'GMShareSDK', '0.2.1'
  

#  pod 'GMPhobos',  :git => 'git@git.wanmeizhensuo.com:gengmeiios/GMPhobos.git', :commit => '2fc748a4f501d350f5a75dff23fc33952e7a2f95'
  target 'GMBase_Tests' do
    inherit! :search_paths

    
  end
end


post_install do |installer|
  # workaround for https://github.com/CocoaPods/CocoaPods/issues/3289
     Pod::Installer::Xcode::TargetValidator.send(:define_method, :verify_no_static_framework_transitive_dependencies) {}
    installer.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
            
        end
    end
end

