-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCleanArchKit.podspec
More file actions
25 lines (18 loc) · 1.15 KB
/
CleanArchKit.podspec
File metadata and controls
25 lines (18 loc) · 1.15 KB
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
Pod::Spec.new do |s|
s.name = 'CleanArchKit'
s.version = '0.1.4'
s.swift_version = "5.4"
s.summary = 'An iOS library to create a project with the Clean Architecture using Router and MVVM pattern.'
s.description = <<-DESC
CleanArchKit is an iOS framework developed in Swift that implements Clean Architecture in a project using the MVVM (Model-View-ViewModel) pattern, as well as Router for managing navigation between screens. It provides base classes for view controllers, view models, and routers, as well as protocols for input and output of view models.
DESC
s.homepage = 'https://github.com/k-angama/iOS-CleanArchKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'kangama' => 'karim.angama@gmail.com' }
s.source = { :git => 'https://github.com/k-angama/iOS-CleanArchKit.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/k_angama'
s.ios.deployment_target = '12.0'
s.source_files = 'Sources/CleanArchKit/**/*.{swift}'
s.exclude_files = 'Tests/CleanArchKit/CleanArchKitTests/**/*.{swift}'
s.frameworks = 'UIKit'
end