forked from ACENative/ACEView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathACEView.podspec
More file actions
24 lines (24 loc) · 891 Bytes
/
ACEView.podspec
File metadata and controls
24 lines (24 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "ACEView"
s.version = "0.0.5"
s.summary = "Use the ACE editor in your 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/faceleg/ACEView"
s.license = {
:type => 'BSD',
:file => 'LICENSE'
}
s.author = { "Michael Robinson" => "mike@pagesofinterest.net" }
s.source = {
:git => 'https://github.com/faceleg/ACEView.git',
:tag => s.version.to_s,
:submodules => true
}
s.platform = :osx
s.frameworks = ['WebKit']
s.resource = ['ACEView/Dependencies/ace/src/*.js', 'ACEView/HTML/index.html']
s.source_files = 'ACEView/Source/**/*.{h,m}'
s.requires_arc = false
end