forked from uber/RIBs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RIBs.podspec
16 lines (16 loc) · 853 Bytes
/
RIBs.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = 'RIBs'
s.version = '0.9.3'
s.summary = 'Uber\'s cross-platform mobile architecture.'
s.description = <<-DESC
RIBs is the cross-platform architecture behind many mobile apps at Uber. This architecture framework is designed for mobile apps with a large number of engineers and nested states.
DESC
s.homepage = 'https://github.com/uber/RIBs'
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE.txt' }
s.author = { 'uber' => 'mobile-open-source@uber.com' }
s.source = { :git => 'https://github.com/uber/RIBs.git', :tag => 'v' + s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'ios/RIBs/Classes/**/*'
s.dependency 'RxSwift', '~> 5.1'
s.dependency 'RxRelay', '~> 5.1'
end