forked from segmentio/analytics-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRNAnalytics.podspec
More file actions
25 lines (21 loc) · 904 Bytes
/
RNAnalytics.podspec
File metadata and controls
25 lines (21 loc) · 904 Bytes
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
require 'json'
package = JSON.parse(File.read('./package.json'))
Pod::Spec.new do |s|
s.name = 'RNAnalytics'
s.version = package['version']
s.summary = package['description']
s.description = <<-DESC
Analytics for iOS provides a single API that lets you
integrate with over 100s of tools.
DESC
s.homepage = 'http://segment.com/'
s.social_media_url = 'https://twitter.com/segment'
s.license = { :type => 'MIT' }
s.author = { 'Segment' => 'friends@segment.com' }
s.source = { :git => 'https://github.com/segmentio/analytics-react-native.git', :tag => s.version.to_s }
s.platform = :ios, '9.0'
s.source_files = 'ios/**/*.{m,h}'
s.static_framework = true
s.dependency 'Analytics'
s.dependency 'React'
end