use_frameworks!
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|
            
            # 指定使用swift 2.3版本
            config.build_settings['SWIFT_VERSION'] = '2.3'
            
        end
    end
end

