forked from reddit-archive/bypass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bypass.podspec
26 lines (20 loc) · 946 Bytes
/
Bypass.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
26
#
Pod::Spec.new do |s|
s.name = "Bypass"
s.version = "1.0"
s.summary = "Skip the HTML, Bypass takes markdown and renders it directly on Android and iOS."
s.homepage = "http://uncodin.github.com/bypass/"
s.license = 'Apache 2.0'
s.authors = { "Colin Edwards" => "[email protected]", "Damian Carrillo" => "[email protected]" }
s.source = { :git => "https://github.com/reddit/bypass.git", :tag => "cocoapods1.0" }
s.platform = :ios
s.source_files = 'dep/boost/**/*.{hpp}',
'dep/libsoldout/markdown.{h,c}',
'dep/libsoldout/buffer.{h,c}',
'dep/libsoldout/array.{h,c}',
'src/*.{h,cpp}',
'platform/ios/Bypass/Bypass/*.{h,m,mm,pch}'
s.public_header_files = 'platform/ios/Bypass/*.h'
s.header_mappings_dir = 'dep/boost'
s.frameworks = "CoreText", "Foundation", "UIKit"
end