-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathSnap.swift.podspec
More file actions
22 lines (18 loc) · 859 Bytes
/
Snap.swift.podspec
File metadata and controls
22 lines (18 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'Snap.swift'
s.version = '0.3.0'
s.summary = 'Snapshot testing in a snap'
s.description = <<-DESC
Snap is a snapshot testing library to facilitate the UI testing of your views.
DESC
s.homepage = 'https://github.com/skyweb07/Snap.swift'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'skyweb07' => 'hi@oduran.me' }
s.source = { :git => 'https://github.com/skyweb07/Snap.swift.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/skyweb07'
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '10.0'
s.module_name = 'Snap'
s.source_files = 'Snap/Core/**/*', 'Snap/Core/Infrastructure/Interoperability/*.h'
s.frameworks = 'UIKit', 'CoreGraphics', 'XCTest'
end