-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHolarchy.podspec
More file actions
26 lines (17 loc) · 772 Bytes
/
Copy pathHolarchy.podspec
File metadata and controls
26 lines (17 loc) · 772 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
Pod::Spec.new do |s|
s.name = "Holarchy"
s.version = "0.0.4"
s.summary = "A subclass of UIScrollView that provides painless building of forms etc."
s.description = %{
Forget about table/collection views when you need to create custom scrollable layout with custom elements.
}
s.homepage = "https://github.com/rimsan/Holarchy"
s.license = 'MIT'
s.author = { "Roman Petryshen" => "roman@travelbird.com" }
s.source = { :git => "https://github.com/rimsan/Holarchy.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/RomanPetryshen'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Holarchy/*'
s.frameworks = 'UIKit'
end