-
Notifications
You must be signed in to change notification settings - Fork 12
/
RamblerTyphoonUtils.podspec
33 lines (27 loc) · 1.8 KB
/
RamblerTyphoonUtils.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
Pod::Spec.new do |s|
s.name = "RamblerTyphoonUtils"
s.version = "1.5.0"
s.summary = "A collection of Typhoon utils and tools used by Rambler&Co."
s.description = <<-DESC
Typhoon is a great tool, and iOS team in Rambler&Co loves it a lot. Besides actual contributing, we've developed some useful tools which cannot be included in the main project.
1. RamblerInitialAssemblyCollector - this class can be used for activating assemblies on startup instead of plist integration.
2. RamblerTyphoonAssemblyTests - A base test class used for TyphoonAssembly testing.
DESC
s.homepage = "https://github.com/rambler-digital-solutions/RamblerTyphoonUtils"
s.license = 'MIT'
s.authors = { "Egor Tolstoy" => "[email protected]", "Irina Dyagileva" => "[email protected]", "Andrey Rezanov" => "[email protected]", "Andrey Zarembo-Godzyatsky" => "[email protected]", "Aleksandr Sychev" => "[email protected]" }
s.source = { :git => "https://github.com/rambler-digital-solutions/RamblerTyphoonUtils.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/rambler_ios'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = "Code/Production/**/*.{h,m}"
s.subspec 'AssemblyCollector' do |subspec|
subspec.source_files = "Code/Production/AssemblyCollector.h", "Code/Production/AssemblyCollector/*.{h,m}"
end
s.subspec 'AssemblyTesting' do |subspec|
subspec.source_files = "Code/Testing/AssemblyTesting.h", "Code/Testing/AssemblyTesting/*.{h,m}"
subspec.framework = 'XCTest'
subspec.user_target_xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(PLATFORM_DIR)/Developer/Library/Frameworks' }
subspec.dependency 'OCMock', '~> 3'
end
end