-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShine.podspec
More file actions
executable file
·16 lines (16 loc) · 1010 Bytes
/
Shine.podspec
File metadata and controls
executable file
·16 lines (16 loc) · 1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "Shine"
s.version = "1.2.1"
s.summary = "The Shine iOS SDK, for integrating Shine into your iOS application."
s.homepage = "https://github.com/SoundwaveApp/Shine-iOS"
s.license = { :type => 'Apache 2.0', :file => 'LICENSE.txt' }
s.authors = { "Clodagh ML" => "clodagh@soundwave.com", "Liam Russell" => "liam@soundwave.com", "Brian Boyle" => "brian@soundwave.com" }
s.source = { :git => "https://github.com/SoundwaveApp/Shine-iOS.git", :tag => s.version.to_s }
s.frameworks = ["Foundation", "CoreGraphics", "MobileCoreServices", "Security", "CoreData"]
s.requires_arc = true
s.platform = :ios, '7.1'
s.preserve_paths = 'Shine.framework'
s.public_header_files = 'Shine.framework/Versions/A/Headers/Shine.h'
s.resource = 'Shine.framework/Versions/A/Resources/ShineBundle.bundle'
s.vendored_frameworks = 'Shine.framework'
end