Kuru/Kuru.podspec

23 lines
1.1 KiB
Ruby

Pod::Spec.new do |s|
s.name = 'Kuru'
s.version = '0.1.0'
s.summary = 'Kuru is the easy way to manipulating ui data from a server in SwiftUI.'
s.description = <<-DESC
Welcome to Kuru - a toolkit for building native, component-driven UIs on iOS. It is designed to enable teams of any size to quickly build, tweak and ship new UI features, in either new or existing apps. It also makes it easy to build backend-driven UIs.
DESC
s.homepage = 'https://github.com/zalazara/Kuru'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Alejandro Zalazar' => 'azalazar@outlook.com.ar' }
s.source = { :git => 'https://github.com/zalazara/Kuru.git', :tag => s.version.to_s }
s.ios.deployment_target = '13.0'
s.source_files = 'Sources/**/*.swift'
s.swift_version = '5.7'
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'Tests/KuruTests/**/*.swift'
test_spec.dependency 'Quick' , '~> 3.1'
test_spec.dependency 'Nimble' , '~> 9.0'
test_spec.ios.deployment_target = '13.0'
end
end