forked from wearhacks/Metawear-iOSAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMetawear-iOSAPI.podspec
More file actions
20 lines (20 loc) · 1.11 KB
/
Metawear-iOSAPI.podspec
File metadata and controls
20 lines (20 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "Metawear-iOSAPI"
s.version = "1.7.0"
s.summary = "API for iOS + documentation files for the MetaWear platform"
s.description = <<-DESC
This library allows for simple interfacing with the MetaWear platform.
You can control every part of the board through simple API calls to get
you're projects up and running fast. See www.mbientlab.com for details.
DESC
s.license = { :type => 'Commercial', :text => 'See https://www.mbientlab.com/terms/', :file => 'LICENSE' }
s.homepage = "http://www.mbientlab.com"
s.author = { "Stephen" => "developers@mbientlab.com" }
s.social_media_url = "https://twitter.com/mbientLab"
s.documentation_url = "https://www.mbientlab.com/docs/metawear/ios/#{s.version}/index.html"
s.platform = :ios, "7.1"
s.source = { :git => "https://github.com/mbientlab/Metawear-iOSAPI.git", :tag => "#{s.version}" }
s.vendored_frameworks = 'MetaWear.framework'
s.public_header_files = "MetaWear.framework/**/*.h"
s.requires_arc = true
end