forked from DangerCove/DCOAboutWindow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDCOAboutWindow.podspec
More file actions
19 lines (19 loc) · 890 Bytes
/
DCOAboutWindow.podspec
File metadata and controls
19 lines (19 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "DCOAboutWindow"
s.version = "0.2.0"
s.summary = "Introduces a prettier About Window."
s.description = <<-DESC
A replacement for the standard About dialog. Adds the option to open
acknowledgments and visit the website by clicking a button.
DESC
s.homepage = "http://github.com/DangerCove/DCOAboutWindow"
s.license = 'BSD'
s.author = { "Boy van Amstel" => "boy@dangercove.com" }
s.platform = :osx, "10.8"
s.source = { :git => "https://github.com/DangerCove/DCOAboutWindow.git", :tag => "0.2.0" }
s.source_files = 'DCOAboutWindow/*.{h,m}'
s.resources = "DCOAboutWindow/*.{xib}"
s.framework = 'QuartzCore'
s.dependency 'DCOTransparentScroller'
s.requires_arc = true
end