Skip to content

Instantly share code, notes, and snippets.

@HBehrens
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HBehrens/9edf19177c62115b5076 to your computer and use it in GitHub Desktop.
Save HBehrens/9edf19177c62115b5076 to your computer and use it in GitHub Desktop.
PebbleKit-Tests
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." => "devsupport@getpebble.com" }
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