-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathGravity.podspec
More file actions
25 lines (21 loc) · 944 Bytes
/
Gravity.podspec
File metadata and controls
25 lines (21 loc) · 944 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
Pod::Spec.new do |s|
s.name = 'Gravity'
s.version = '1.2.6'
s.platform = :ios, '7.0'
s.license = 'MIT'
s.summary = 'A robust set of tools commonly used during iOS development.'
s.homepage = 'https://github.com/gdavis/Gravity'
s.author = { 'Grant Davis' => 'grant@grantdavisinteractive.com' }
s.source = { :git => 'https://github.com/gdavis/Gravity.git', :tag => s.version.to_s }
s.description = 'Gravity is a collection of commonly used categories, components, and helpers to perform a variety of tasks from drawing gradient fills, resizing scroll views for keyboards, generating colors with hex values, and much more.'
s.source_files = 'Gravity/*.{h,m}'
s.frameworks = 'QuartzCore','CoreGraphics'
s.libraries = 'z'
s.requires_arc = true
s.subspec 'Color' do |ss|
ss.dependency 'GDIColor', '~> 0.1'
end
s.subspec 'CoreData' do |ss|
ss.dependency 'GDICoreDataKit', '~> 0.2.2'
end
end