-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRubick.podspec
More file actions
36 lines (30 loc) · 1011 Bytes
/
Rubick.podspec
File metadata and controls
36 lines (30 loc) · 1011 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
25
26
27
28
29
30
31
32
33
34
35
36
Pod::Spec.new do |spec|
spec.name = 'Rubick'
spec.version = '0.1.0'
spec.summary = 'iOS component collection.'
spec.description = <<-DESC
# Rubick
iOS component collection.
## Why use this?
balabala...
## Usage
DESC
spec.homepage = 'https://github.com/langyanduan/Rubick'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.author = { 'langyanduan' => 'langyanduan@qq.com' }
spec.source = { :git => 'https://github.com/langylanduan/Rubick.git', :tag => spec.version.to_s }
spec.social_media_url = 'https://twitter.com/langyanduan'
spec.ios.deployment_target = '8.0'
spec.default_subspec = ['Core', 'Extension']
# Subspecs
spec.subspec 'Core' do |core|
core.source_files = [
]
end
spec.subspec 'Extension' do |extension|
extension.source_files = [
'Sources/Extension/*.swift'
]
extension.dependency 'Rubick/Core'
end
end