forked from ibireme/YYModel
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathYYModel.podspec
More file actions
23 lines (18 loc) · 765 Bytes
/
YYModel.podspec
File metadata and controls
23 lines (18 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'YYModel'
s.summary = 'High performance model framework for iOS/OSX.'
s.version = '1.0.4'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'ibireme' => 'ibireme@gmail.com' }
s.social_media_url = 'http://blog.ibireme.com'
s.homepage = 'https://github.com/ibireme/YYModel'
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.7'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.source = { :git => 'https://github.com/ibireme/YYModel.git', :tag => s.version.to_s }
s.requires_arc = true
s.source_files = 'YYModel/*.{h,m}'
s.public_header_files = 'YYModel/*.{h}'
s.frameworks = 'Foundation', 'CoreFoundation'
end