forked from ACENative/ACEViewSwift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathACEViewSwift.podspec
31 lines (19 loc) · 1.08 KB
/
ACEViewSwift.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
27
28
29
30
31
Pod::Spec.new do |s|
s.name = "ACEViewSwift"
s.version = "1.0.2"
s.summary = "Use the wonderful ACE editor in your Swift Cocoa applications"
s.description = <<-DESC
The ACEView framework aims to allow you to use the ACE source code editor in your Cocoa applications, as if it were a native control.
DESC
s.homepage = "https://github.com/ACENative/ACEViewSwift"
s.screenshots = "https://raw.github.com/ACENative/ACEViewSwift/master/Screenshots/Demo%20window.png"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Vasilis Akoinoglou" => "alladinian@gmail.com" }
s.social_media_url = "http://twitter.com/alladinian"
s.documentation_url = "http://acenative.github.io/ACEViewSwift/"
s.platform = :osx, "10.10"
s.source = { :git => "https://github.com/ACENative/ACEViewSwift.git", :tag => "v1.0.2", :submodules => true }
s.source_files = "ACEViewSwift/*.swift"
s.framework = "WebKit"
s.resources = ["ACEBuilds/src-min/*", "ACEViewSwift/Dependencies/emmet/*", "ACEViewSwift/index.html"]
end