forked from Rivukis/Spry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Spry.podspec
18 lines (15 loc) · 999 Bytes
/
Spry.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'Spry'
s.version = '3.3.0'
s.summary = 'Spry is spying and stubbing framework for Apple\'s Swift language.'
s.description = <<-DESC
Spry allows developers to test a specific object without having to test dependency objects that the subject under test uses. Spyable allows a developer to check whether or not a function was called on an object with the correct arguments. Stubbable allows a developer to stub return values (or the entire implementation of a function) to ensure proper encapsulation during tests.
DESC
s.homepage = 'https://github.com/Rivukis/Spry'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Brian Radebaugh' => '[email protected]' }
s.source = { :git => 'https://github.com/Rivukis/Spry.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = '12.0'
s.source_files = 'Source/*'
end