forked from yahoo/bgswift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BGSwift.podspec
40 lines (32 loc) · 1.72 KB
/
BGSwift.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
33
34
35
36
37
38
39
Pod::Spec.new do |s|
s.name = 'BGSwift'
s.platform = :ios, '12.0'
s.version = '0.5.0'
s.summary = 'Behavior Graph is a software library that greatly enhances our ability to program user facing software and control systems.'
s.description = <<-DESC
Behavior Graph is a software library that greatly enhances our ability to program user facing software and control systems. Programs of this type quickly scale up in complexity as features are added. Behavior Graph directly addresses this complexity by shifting more of the burden to the computer. It works by offering the programmer a new unit of code organization called a behavior. Behaviors are blocks of code enriched with additional information about their stateful relationships. Using this information, Behavior Graph enforces _safe use of mutable state_, arguably the primary source of complexity in this class of software. It does this by taking on the responsibility of control flow between behaviors, ensuring they are are _run at the correct time and in the correct order_.
DESC
s.license = { :type => 'Apache-2.0', :file => 'LICENSE.txt' }
s.homepage = 'https://www.github.com/yahoo/BGSwift'
s.authors = {
'James Lou' => '[email protected]',
'Sean Levin' => '[email protected]'
}
s.source = {
:git => '[email protected]:yahoo/BGSwift.git',
:tag => s.version.to_s
}
s.requires_arc = true
s.default_subspecs = 'Core'
s.subspec "Core" do |sp|
sp.resources = []
sp.source_files =[
'BGSwift/Classes/**/*.{h,m,swift}',
]
sp.public_header_files = [
]
sp.frameworks = [
'Foundation',
]
end
end