-
Notifications
You must be signed in to change notification settings - Fork 7
/
InstantMock.podspec
37 lines (28 loc) · 1.05 KB
/
InstantMock.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
34
35
36
37
# Spec for InstantMock Pod
Pod::Spec.new do |s|
# Spec Metadata
s.name = "InstantMock"
s.version = "2.5.6"
s.summary = "InstantMock makes it easy to create and use mocks in Swift"
# Description used to generate tags and improve search results.
s.description = <<-DESC
InstantMock aims at creating mocks easily in Swift. It provides a simple
way to mock, stub and verify expectations.
DESC
s.homepage = "https://github.com/pirishd/InstantMock"
# Spec License
s.license = "MIT"
# Author Metadata
s.author = { "Patrick Irlande (pirishd)" => "pirishd@icloud.com" }
# Source Location
s.source = { :git => "https://github.com/pirishd/InstantMock.git", :tag => "#{s.version}" }
# Source Code
s.source_files = "Sources/**/*.{h,m,swift}"
s.requires_arc = true
s.swift_version = '5.0'
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = '9.0'
# Project Linking
s.frameworks = 'XCTest'
end