-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSmallStep.podspec
More file actions
24 lines (19 loc) · 968 Bytes
/
SmallStep.podspec
File metadata and controls
24 lines (19 loc) · 968 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
Pod::Spec.new do |spec|
spec.name = "SmallStep"
spec.version = "1.0.0"
spec.summary = "Cross-platform abstraction layer for macOS, iOS, and Linux"
spec.description = <<-DESC
SmallStep provides a unified API for common platform-specific operations,
allowing you to write code once and run it on multiple platforms.
DESC
spec.homepage = "https://github.com/yourusername/SmallStep"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Your Name" => "your.email@example.com" }
spec.ios.deployment_target = "11.0"
spec.osx.deployment_target = "10.13"
spec.source = { :git => "https://github.com/yourusername/SmallStep.git", :tag => "#{spec.version}" }
spec.source_files = "SmallStep/Core/**/*.{h,m}", "SmallStep/Platform/**/*.{h,m}"
spec.public_header_files = "SmallStep/Core/*.h", "SmallStep/Platform/**/*.h"
spec.frameworks = "Foundation"
spec.requires_arc = true
end