forked from tarkalabs/Eddystone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEddystone.podspec
More file actions
29 lines (26 loc) · 1.2 KB
/
Copy pathEddystone.podspec
File metadata and controls
29 lines (26 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#
# Be sure to run `pod lib lint Eddystone.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "Eddystone"
s.version = "1.1.3"
s.summary = "Explore Eddystone and the Physical Web"
s.description = "Add Eddystone support to your app and start letting your users interact with Eddystone beacons and the Physical Web. This cocoapod will allow you to scan for Beacons broadcasting the Eddystone-URL, Eddystone-UID, and Eddystone-TLM protocol."
s.homepage = "https://github.com/BlueBiteLLC/Eddystone"
s.license = 'MIT'
s.author = { "Tanner Nelson" => "tanner@bluebite.com" }
s.source = { :git => "https://github.com/BlueBiteLLC/Eddystone.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/BlueBite'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'Eddystone' => ['Pod/Assets/*.png']
}
s.frameworks = 'CoreBluetooth'
end