Last active
August 29, 2015 14:01
-
-
Save HBehrens/9edf19177c62115b5076 to your computer and use it in GitHub Desktop.
PebbleKit-Tests
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = "PebbleKit" | |
s.version = "2.1.1" | |
s.summary = "Embed PebbleKit iOS into your app to communicate with Pebble" | |
s.homepage = "http://developer.getpebble.com" | |
s.license = { | |
:type => 'Commercial', | |
:text => <<-LICENSE | |
© 2014 Pebble Technology Corp. All rights reserved. | |
LICENSE | |
} | |
s.author = { "Pebble Technology Corp." => "[email protected]" } | |
s.source = { :git => "https://github.com/HBehrens/PebbleKit.git", :tag => s.version } | |
s.platform = :ios, '6.0' | |
s.preserve_paths = "PebbleKit.framework", "PebbleVendor.framework" | |
s.vendored_frameworks = "PebbleKit.framework", "PebbleVendor.framework" | |
s.public_header_files = 'PebbleKit.framework/Versions/A/Headers/PebbleKit.h', 'PebbleVendor.framework/Versions/A/Headers/PebbleVendor.h' | |
s.weak_frameworks = 'ExternalAccessory', 'CoreBluetooth', 'CoreMotion', 'MessageUI' | |
s.libraries = 'z' | |
s.requires_arc = true | |
s.prepare_command = "echo will you see this during installation? >&2" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment