-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathSwiftyMock.podspec
33 lines (27 loc) · 1.07 KB
/
SwiftyMock.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 = 'SwiftyMock'
s.version = '0.2.3'
s.summary = 'Some helpers to do Mocking in Swift.'
s.description = <<-DESC
Some helpers to do Mocking in Swift.
Mostly useful for mocking via protocols. Simple solution. Handles most of the cases. Easy setup
DESC
s.homepage = 'https://github.com/Stanfy/SwiftyMock'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Stanfy' => '[email protected]' }
s.source = { :git => 'https://github.com/Stanfy/SwiftyMock.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.default_subspec = 'Core'
s.subspec 'Core' do |cs|
cs.source_files = 'SwiftyMock/Classes/Core/**/*'
end
s.subspec 'ReactiveCocoa' do |rs|
rs.dependency 'SwiftyMock/Core'
rs.dependency 'ReactiveCocoa', '~> 7.1'
rs.source_files = 'SwiftyMock/Classes/ReactiveCocoa/**/*'
end
s.subspec 'Templates' do |ts|
ts.dependency 'SwiftyMock/Core'
ts.resources = 'SwiftyMock/Templates/**/*'
end
end