-
Notifications
You must be signed in to change notification settings - Fork 3
/
StackBox.podspec
29 lines (26 loc) · 1.33 KB
/
StackBox.podspec
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
#
# Be sure to run `pod lib lint StackBox.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "StackBox"
s.version = "0.1.2"
s.summary = "StackBox is a scrollable container where you can easily insert and remove boxes."
s.description = <<-DESC
StackBoxView is dynamic so you don't have to worry about the contentSize. Sub-boxes are
manage by a UIStackView.
StackBoxContainer is the container object use by the StackBox to render stacks
Each box contains the StackBoxItem create initialy by the you
Create your own StackBoxItem by setting a view, his offset and alignement
DESC
s.homepage = 'https://github.com/hugweb/StackBox'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'hugweb' => 'hugweb@gmail.com' }
s.source = { :git => 'https://github.com/hugweb/StackBox.git', :tag => s.version.to_s }
s.platform = :ios, '9.0'
s.requires_arc = true
s.source_files = 'StackBox/Classes/**/*'
end