-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCribble.podspec
More file actions
20 lines (16 loc) · 764 Bytes
/
Copy pathCribble.podspec
File metadata and controls
20 lines (16 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'Cribble'
s.module_name = 'Cribble'
s.version = '2.1.0'
s.homepage = 'https://github.com/maxsokolov/Cribble'
s.summary = 'Swifty tool for visual testing iPhone and iPad apps'
s.author = { 'Max Sokolov' => 'i@maxsokolov.net' }
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.platforms = { :ios => '8.0' }
s.ios.deployment_target = '8.0'
s.source_files = 'Sources/*.swift'
s.resource_bundles = {
'Cribble' => ['Sources/*.{storyboard,png}']
}
s.source = { :git => 'https://github.com/maxsokolov/Cribble.git', :tag => s.version }
end