Files

19 lines
770 B
Ruby

Pod::Spec.new do |s|
s.name = 'ble'
s.version = '0.1.0'
s.summary = 'BLE GATT-server peripheral host for the DALI relay feature.'
s.description = <<-DESC
Flutter plugin that exposes a BLE relay host API for DALI Toolkit.
On macOS the current implementation is a stub that reports unsupported.
DESC
s.homepage = 'https://github.com/tonylu00/DALI-Toolkit'
s.license = { :type => 'Proprietary' }
s.author = { 'DALI Toolkit' => 'noreply@example.com' }
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.dependency 'FlutterMacOS'
s.platform = :osx, '10.11'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.swift_version = '5.0'
end