-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathSuperMock.podspec
More file actions
23 lines (18 loc) · 1.1 KB
/
SuperMock.podspec
File metadata and controls
23 lines (18 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "SuperMock"
s.version = "0.2.3"
s.swift_version = "4.2"
s.summary = "A very simple yet powerful UI and Unit testing HTTP mock framework. Lives in your app and runs offline."
s.description = <<-DESC
A very simple yet powerful UI and Unit testing mock framework for API calls. It lives in your app and is completely offline. Setup your mocks at the start rather than on a per test basis.
Inspired by the need for MOCKS in UI tests without the hassle of setting up per class mocks and wanting something very portable and retro-compatible with any codebase.
DESC
s.homepage = "https://github.com/michaelarmstrong/SuperMock"
s.license = 'MIT'
s.author = { "Michael Armstrong" => "@ArmstrongAtWork" }
s.source = { :git => "https://github.com/michaelarmstrong/SuperMock.git", :tag => s.version.to_s, :branch => 'master' }
s.social_media_url = 'https://twitter.com/ArmstrongAtWork'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
end