-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBoonary.podspec
18 lines (18 loc) · 959 Bytes
/
Boonary.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'Boonary'
s.version = '0.1.1'
s.summary = 'Simple extensions of conversion between Bool and Int values.'
s.description = <<-DESC
The motivation for this library comes when you think of converting Bool value into Int one e.g. true to 1 or false to 0 and vice versa.
It's possible to implement extension with Bool or Int but burden for you to write in every project!
So that's why this library exist.
DESC
s.homepage = 'https://github.com/imaizume/Boonary'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Tomohiro Imaizumi' => '[email protected]' }
s.source = { :git => 'https://github.com/imaizume/Boonary.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/imaizume'
s.ios.deployment_target = '8.0'
s.source_files = 'Boonary/Classes/**/*'
s.swift_version = '4.0'
end