use_frameworks!
inhibit_all_warnings!
platform :ios, '8.0'
#open source
source 'https://github.com/CocoaPods/Specs.git'
#our company
source 'git@git.gengmei.cc:gengmeiios/GMSpecs.git'

target 'GMBase_Example' do
  pod 'GMBase', :path => '../'

  target 'GMBase_Tests' do
    inherit! :search_paths

    
  end
end


post_install do |installer|
    installer.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
            
        end
    end
end

