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