forked from stanwood/SourceModel_iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSourceModel.podspec
More file actions
24 lines (19 loc) · 782 Bytes
/
SourceModel.podspec
File metadata and controls
24 lines (19 loc) · 782 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 |s|
s.name = 'SourceModel'
s.version = '1.3.3'
s.summary = 'SourceModel design pattern'
s.description = <<-DESC
SourceModel is a design pattern framework that removes the boiler plate code from list view.
DESC
s.homepage = 'https://github.com/stanwood/SourceModel_iOS'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'stanwood' => 'ios.frameworks@stanwood.io' }
s.source = {
:git => 'https://github.com/stanwood/SourceModel_iOS.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = '10.0'
s.source_files = [
'Sources/SourceModel/Core/**/*',
'Sources/SourceModel/Protocols/**/*'
]
end