-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFRBButtonBar.podspec
More file actions
15 lines (15 loc) · 861 Bytes
/
FRBButtonBar.podspec
File metadata and controls
15 lines (15 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |spec|
spec.name = 'FRBButtonBar'
spec.platform = :osx, "10.9"
spec.version = '0.1'
spec.license = { :type => 'MIT' }
spec.homepage = 'https://github.com/peckrob/FRBButtonBar'
spec.authors = { 'Rebecca Peck' => 'me@rebeccapeck.org' }
spec.summary = 'A button bar designed to resemble Safari\'s bookmarks bar in behavior and appearance.'
spec.source = { :git => 'https://github.com/peckrob/FRBButtonBar.git', :tag => 'v0.1' }
spec.requires_arc = true
spec.public_header_files = "FRBButtonBar/FRBButtonBar.h", "FRBButtonBar/FRBButtonBarProtocols.h", "FRBButtonBar/FRBButtonBarItem.h", "FRBButtonBar/FRBButtonBarControl.h"
spec.source_files = "FRBButtonBar/*.{h,m}"
spec.resources = "FRBButtonBar/*.pdf"
spec.frameworks = 'Foundation', 'Cocoa'
end