From a5ec9f1292fff2954a34443bcca53e73e0a08f74 Mon Sep 17 00:00:00 2001 From: Eric Tu Date: Sat, 24 Aug 2019 14:33:04 +0200 Subject: [PATCH] initial podspec (#18) * inital podspec * update podspec * add tag * update podspec * remove UB.swift.podspec * update tag --- UB.podspec | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 UB.podspec diff --git a/UB.podspec b/UB.podspec new file mode 100644 index 0000000..3a70e22 --- /dev/null +++ b/UB.podspec @@ -0,0 +1,11 @@ +Pod::Spec.new do |spec| + spec.name = 'UB' + spec.version = '0.1.0' + spec.authors = {'Eric Tu' => 'eric@chainsafe.io', 'Dean Eigenmann' => 'dean@status.io'} + spec.homepage = 'https://github.com/ultralight-beam/UB.swift' + spec.license = { :type => 'MIT' } + spec.source = { :git => 'https://github.com/ultralight-beam/UB.swift.git', :tag => '0.1.0'} + spec.summary = 'MANETs' + spec.swift_version = '4.2' + spec.source_files = 'UB.swift/*.swift' +end