-
Notifications
You must be signed in to change notification settings - Fork 3
/
Swiftea.podspec
32 lines (25 loc) · 1.16 KB
/
Swiftea.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#
# Be sure to run `pod lib lint Swiftea.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'Swiftea'
s.version = '0.9.5'
s.summary = 'Swiftea is a Swift implementation of The Elm Arcitecture (TEA) design pattern'
s.description = <<-DESC
Swiftea is a Swift implementation of The Elm Arcitecture (TEA) design pattern. It's simple, It's use Combine, It's straightforward. Just as TEA Design pattern.
DESC
s.homepage = 'https://github.com/cooler333/Swiftea'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Dmitrii Coolerov' => 'utm4@mail.ru' }
s.source = { :git => 'https://github.com/cooler333/Swiftea.git', :tag => s.version.to_s }
s.ios.deployment_target = '13.0'
s.source_files = 'Sources/**/*.swift'
s.swift_versions = ["5.5"]
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'Tests/SwifteaTests/**/*.swift'
end
end