-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOKit.podspec
More file actions
13 lines (13 loc) · 789 Bytes
/
OKit.podspec
File metadata and controls
13 lines (13 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
Pod::Spec.new do |spec|
spec.name = "OKit"
spec.version = "1.0.4"
spec.summary = "Easy to use application framework for Swift, to create apps based on models and storyboards with (almost) no code."
spec.description = "OKit is a Swift framework to build model based apps, based on inspectable properties used to bind storyboard controllers/controls to codable Swift models"
spec.homepage = "https://github.com/oklemenz/OKit"
spec.license = { :type => "MIT" }
spec.author = { "Oliver Klemenz" => "oklemenz@gmail.com" }
spec.platform = :ios, "12.0"
spec.source = { :git => "https://github.com/oklemenz/OKit.git", :tag => "#{spec.version}" }
spec.source_files = "OKit/**/*.{swift,h,png}"
spec.swift_version = "5"
end