-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStepByStepTracking.podspec
More file actions
29 lines (23 loc) · 1001 Bytes
/
StepByStepTracking.podspec
File metadata and controls
29 lines (23 loc) · 1001 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
26
27
28
29
Pod::Spec.new do |s|
s.name = "StepByStepTracking"
s.version = "0.2.2"
s.swift_versions = "5"
s.summary = "[StepTracking] Track code behavior follow step by step."
s.description = <<-DESC
Core Tracking to implement tracking layer which independent with Analytics agencies.
Your flow will be abstracted to steps. Each step has some default values. All events was sent in step included available values of the step.
DESC
s.homepage = "https://github.com/congncif/StepByStepTracking"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "NGUYEN CHI CONG" => "congnc.if@gmail.com" }
s.source = { :git => "https://github.com/congncif/StepByStepTracking.git", :tag => s.version.to_s }
s.social_media_url = "https://twitter.com/congncif"
s.ios.deployment_target = "14.0"
s.default_subspec = "Default"
s.subspec "Default" do |co|
co.dependency "StepByStepTracking/Core"
end
s.subspec "Core" do |co|
co.source_files = "Sources/**/*.swift"
end
end