-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathStarPrinting.podspec
More file actions
16 lines (16 loc) · 834 Bytes
/
StarPrinting.podspec
File metadata and controls
16 lines (16 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "StarPrinting"
s.version = "0.1.1"
s.summary = "Star print queue and persistence for iOS and Mac"
s.homepage = "https://github.com/opentable/star-printing"
s.license = 'MIT'
s.authors = { "Will Loderhose" => "will.loderhose@gmail.com" , "Matt Newberry" => "mattnewberry@me.com"}
s.source = { :git => "https://github.com/opentable/star-printing.git", :tag => '0.1.1' }
s.requires_arc = true
s.source_files = 'StarPrinting/*.{h,m}'
s.platform = :ios, '7.0'
s.preserve_paths = 'StarIO.framework'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/StarPrinting"' }
s.vendored_frameworks = 'StarIO.framework'
s.header_mappings_dir = 'StarIO'
end