-
Notifications
You must be signed in to change notification settings - Fork 11
/
BentoKit.podspec
24 lines (20 loc) · 1.03 KB
/
BentoKit.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
Pod::Spec.new do |s|
s.name = "BentoKit"
s.version = "0.4"
s.summary = "Common components and toolbox for building component based interfaces. Built on top of Bento."
s.description = <<-DESC
Common components and toolbox for building component based interfaces. Built on top of Bento.
DESC
s.homepage = "https://github.com/Babylonpartners/Bento"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Babylon iOS" => "[email protected]" }
s.ios.deployment_target = '10.0'
# Switch back to use the version tag when we release 0.4.
s.source = { :git => "https://github.com/Babylonpartners/Bento.git", :branch => "master" } #, :tag => "#{s.version}" }
s.source_files = 'BentoKit/BentoKit/**/*.swift', 'Common/*.swift'
s.swift_version = "4.2"
# Switch back to use the master spec when we release 0.4.
s.dependency "Bento"
s.dependency "ReactiveSwift", "~> 5.0.0"
s.dependency "ReactiveCocoa", "~> 9.0.0"
end