-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathSwish.podspec
More file actions
22 lines (20 loc) · 754 Bytes
/
Swish.podspec
File metadata and controls
22 lines (20 loc) · 754 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 |spec|
spec.name = 'Swish'
spec.version = '4.0.0'
spec.summary = 'Nothing but net(working)'
spec.homepage = 'https://github.com/thoughtbot/Swish'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.author = {
'Gordon Fontenot' => 'gordon@thoughtbot.com',
'Sid Raval' => 'sid@thoughtbot.com',
'thoughtbot' => nil,
}
spec.social_media_url = 'http://twitter.com/thoughtbot'
spec.source = { :git => 'https://github.com/thoughtbot/Swish.git', :tag => "v#{spec.version}" }
spec.source_files = 'Source/**/*.{h,swift}'
spec.requires_arc = true
spec.ios.deployment_target = '8.0'
spec.osx.deployment_target = '10.9'
spec.watchos.deployment_target = '2.0'
spec.tvos.deployment_target = '9.0'
end