Files
public-sdks-score/ScoreTracker.podspec
Blake ca717e4656 Publish Score iOS SDK 0.1.0 (SPM package + podspec + docs)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-08-06 01:27:14 -04:00

22 lines
1016 B
Ruby

Pod::Spec.new do |s|
s.name = 'ScoreTracker'
s.version = '0.1.0'
s.summary = 'Score mobile tracker (iOS) — KMP shared core + Swift facade.'
s.description = <<-DESC
Lightweight app analytics / fan-engagement tracker. Emits the same event
envelope as the Score web tracker (@3halves-labs/score-tracker), with a
durable offline queue, consent gating, and Auth0 JWT support.
DESC
s.homepage = 'https://git.3halves-labs.com/3HL-SCORE/public-sdks-score'
s.license = { :type => 'MIT' }
s.author = '3 Halves Labs'
s.platform = :ios, '14.0'
s.swift_version = '5.9'
# Release attaches the zipped XCFramework; point :http at that asset.
s.source = { :http => 'https://git.3halves-labs.com/3HL-SCORE/public-sdks-score/releases/download/mobile-v0.1.0/ScoreTrackerKit.xcframework.zip' }
s.vendored_frameworks = 'ScoreTrackerKit.xcframework'
s.source_files = 'Sources/ScoreTracker/**/*.swift'
end