1*890232f2SAndroid Build Coastguard WorkerPod::Spec.new do |s| 2*890232f2SAndroid Build Coastguard Worker s.name = 'FlatBuffers' 3*890232f2SAndroid Build Coastguard Worker s.version = '2.0.0' 4*890232f2SAndroid Build Coastguard Worker s.summary = 'FlatBuffers: Memory Efficient Serialization Library' 5*890232f2SAndroid Build Coastguard Worker 6*890232f2SAndroid Build Coastguard Worker s.description = "FlatBuffers is a cross platform serialization library architected for 7*890232f2SAndroid Build Coastguard Worker maximum memory efficiency. It allows you to directly access serialized 8*890232f2SAndroid Build Coastguard Worker data without parsing/unpacking it first, while still having great 9*890232f2SAndroid Build Coastguard Worker forwards/backwards compatibility." 10*890232f2SAndroid Build Coastguard Worker 11*890232f2SAndroid Build Coastguard Worker s.homepage = 'https://github.com/google/flatbuffers' 12*890232f2SAndroid Build Coastguard Worker s.license = { :type => 'Apache2.0', :file => 'LICENSE' } 13*890232f2SAndroid Build Coastguard Worker s.author = { 'mustii' => '[email protected]' } 14*890232f2SAndroid Build Coastguard Worker s.source = { :git => 'https://github.com/mustiikhalil/flatbuffers.git', :tag => s.version.to_s, :submodules => true } 15*890232f2SAndroid Build Coastguard Worker 16*890232f2SAndroid Build Coastguard Worker s.ios.deployment_target = '11.0' 17*890232f2SAndroid Build Coastguard Worker s.osx.deployment_target = '10.14' 18*890232f2SAndroid Build Coastguard Worker 19*890232f2SAndroid Build Coastguard Worker s.swift_version = '5.0' 20*890232f2SAndroid Build Coastguard Worker s.source_files = 'Sources/**/*' 21*890232f2SAndroid Build Coastguard Workerend 22