-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathBFKit.podspec
25 lines (25 loc) · 1.08 KB
/
BFKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Pod::Spec.new do |s|
s.name = "BFKit"
s.version = "1.4.0"
s.summary = "BFKit is a collection of useful classes to develop Apps faster"
s.homepage = "https://github.com/FabrizioBrancati/BFKit"
s.screenshots = "http://github.fabriziobrancati.com/bfkit/resources/screenshot.png"
s.license = {
:type => "MIT",
:file => "LICENSE"
}
s.author = { "Fabrizio Brancati" => "fabrizio.brancati@gmail.com" }
s.social_media_url = "https://twitter.com/infinity4all"
s.platform = :ios, "7.0"
s.source = {
:git => "https://github.com/FabrizioBrancati/BFKit.git",
:tag => "v1.4.0"
}
s.prefix_header_contents = '#import <BFKit.h>'
s.source_files = "BFKit/**/*.{h,m}"
s.public_header_files = "BFKit.h"
s.resources = "BFKit/Languages/**"
s.frameworks = "Foundation", "UIKit", "CoreGraphics", "AudioToolbox", "CoreImage", "Accelerate", "QuartzCore"
s.weak_frameworks = 'LocalAuthentication'
s.requires_arc = true
end