-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuickGWT.podspec
More file actions
21 lines (17 loc) · 791 Bytes
/
QuickGWT.podspec
File metadata and controls
21 lines (17 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'QuickGWT'
s.version = '1.1.0'
s.summary = 'Simply adds Given When and Then to Quick.'
s.description = <<-DESC
Simply adds Given When and Then to Quick. And makes sure the test outputs are looking pretty.
DESC
s.homepage = 'https://github.com/mennolovink/QuickGWT'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'mennolovink' => 'mclovink@me.com' }
s.source = { :git => 'https://github.com/mennolovink/QuickGWT.git', :tag => s.version.to_s }
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.source_files = 'QuickGWT/Classes/**/*'
s.dependency 'Quick', '~> 1.2'
end