forked from NikSativa/SpryKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNSpry.podspec
21 lines (16 loc) · 1014 Bytes
/
NSpry.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |spec|
spec.name = 'NSpry'
spec.version = '1.2.9'
spec.summary = 'NSpry is spying and stubbing framework for Apple\'s Swift language.'
spec.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
spec.source = { :git => 'git@github.com:NikSativa/NSpry.git' }
spec.homepage = 'https://github.com/NikSativa/NSpry'
spec.license = 'MIT'
spec.authors = { 'Nikita Konopelko' => 'nik.sativa@gmail.com' }
spec.social_media_url = 'https://www.facebook.com/Nik.Sativa'
spec.swift_version = '5.4'
spec.ios.deployment_target = '11.0'
spec.source_files = 'Source/Core/*'
end