forked from nickynick/Boilerdata
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBoilerdata.podspec
More file actions
24 lines (18 loc) · 870 Bytes
/
Boilerdata.podspec
File metadata and controls
24 lines (18 loc) · 870 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 = "Boilerdata"
s.version = "0.3.2"
s.summary = "A powerful and extensible toolkit aimed at bringing these nasty dynamic lists of data to UI."
s.description = 'A detailed description will be here soon. Someday.'
s.homepage = "https://github.com/nickynick/Boilerdata"
s.license = 'MIT'
s.author = { "Nick Tymchenko" => "t.nick.a@gmail.com" }
s.source = { :git => "https://github.com/nickynick/Boilerdata.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/nickynick42'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Boilerdata/**/*.{h,m}'
s.public_header_files = 'Boilerdata/**/*.h'
s.frameworks = 'UIKit'
s.dependency 'NNArrayDiff', '~> 0.3'
s.dependency 'UIKitWorkarounds', '>= 0.2'
end