mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
25 lines
663 B
Ruby
25 lines
663 B
Ruby
require 'json'
|
|
|
|
Pod::Spec.new do |s|
|
|
s.name = 'PaseoHardwareKeyboard'
|
|
s.version = '0.1.0'
|
|
s.summary = 'Hardware keyboard shortcuts for Paseo'
|
|
s.description = 'Hardware keyboard shortcuts for Paseo'
|
|
s.license = 'AGPL-3.0-or-later'
|
|
s.author = 'Paseo'
|
|
s.homepage = 'https://paseo.sh'
|
|
s.platforms = { :ios => '13.4' }
|
|
s.swift_version = '5.4'
|
|
s.source = { :path => '.' }
|
|
s.static_framework = true
|
|
|
|
s.dependency 'ExpoModulesCore'
|
|
|
|
s.pod_target_xcconfig = {
|
|
'DEFINES_MODULE' => 'YES',
|
|
'SWIFT_COMPILATION_MODE' => 'wholemodule'
|
|
}
|
|
|
|
s.source_files = "**/*.{h,m,swift}"
|
|
end
|