forked from Kapeli/HighlightedWebView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HighlightedWebView.podspec
23 lines (18 loc) · 1.02 KB
/
HighlightedWebView.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "HighlightedWebView"
s.version = "1.0.0"
s.summary = "WebView subclass that highlights all search results (Safari-style wannabe)"
s.description = <<-DESC
`WebView` subclass that highlights all search results (Safari-style wannabe).
DESC
s.homepage = "https://github.com/Kapeli/HighlightedWebView"
s.screenshot = "https://github.com/Kapeli/HighlightedWebView/raw/master/Preview.png"
s.license = { :type => "MIT", :file => "README.md" }
s.author = {"Bogdan Popescu" => "[email protected]"}
s.social_media_url = "http://twitter.com/kapeli"
s.platform = :osx
s.source = { :git => "https://github.com/Kapeli/HighlightedWebView.git", :tag => "1.0.0" }
s.source_files = "HighlightedWebView/*.{h,m}"
s.exclude_files = "HighlightedWebView/DHAppDelegate.h", "HighlightedWebView/DHAppDelegate.m", "HighlightedWebView/main.m"
s.frameworks = "Foundation", "Cocoa"
end