forked from baldurh/MockItYourself
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMockItYourself.podspec
More file actions
24 lines (20 loc) · 1.17 KB
/
MockItYourself.podspec
File metadata and controls
24 lines (20 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "MockItYourself"
s.version = "1.1.3"
s.summary = "MockItYourself is a simple mocking framework for Swift"
s.description = <<-DESC
MockItYourself is a mocking framework for Swift.
Currently, Swift has read-only reflection and it is therefore impossible to create a dynamic mocking framework like OCMock.
MockItYourself reduces the boilerplate needed to manually create mocks and is heavily inspired by SwiftMock.
DESC
s.homepage = "https://github.com/plain-vanilla-games/MockItYourself"
s.license = 'MIT'
s.author = { "Alexey Verein" => "alexey@plainvanillagames.com",
"Jóhann Þ. Bergþórsson" => "johann@plainvanillagames.com",
"Magnus Ó. Magnússon" => "magnus@plainvanillagames.com",
"Alexander A. Helgason" => "alliannas@plainvanillagames.com"}
s.source = { :git => "https://github.com/plain-vanilla-games/MockItYourself.git", :tag => s.version.to_s }
s.source_files = 'MockItYourself/**/*.swift'
s.ios.deployment_target = '8.0'
s.frameworks = 'XCTest'
end