Skip to content

Commit 527470b

Browse files
committed
Added license to files and changed podspec homepage.
1 parent 2d25fd3 commit 527470b

File tree

4 files changed

+46
-6
lines changed

4 files changed

+46
-6
lines changed

FZAccordionTableView.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Pod::Spec.new do |s|
22
s.name = 'FZAccordionTableView'
3-
s.version = '0.1.0'
4-
s.source = { :git => 'https://github.com/fuzz-productions/FZAccordionTableView.git', :tag => '0.1.0' }
3+
s.version = '0.1.1'
4+
s.source = { :git => 'https://github.com/fuzz-productions/FZAccordionTableView.git', :tag => '0.1.1' }
55
s.source_files = 'FZAccordionTableView/*.{h,m}'
66
s.platform = :ios, '7.0'
77
s.requires_arc = true
88
s.license = { :type => 'MIT', :file => 'LICENSE' }
99
s.summary = 'FZAccordionTableView transforms your regular UITableView into an accordion table view.'
1010
s.author = { 'Krisjanis Gaidis' => '[email protected]'}
11-
s.homepage = 'http://www.fuzzproductions.com'
11+
s.homepage = 'https://github.com/fuzz-productions/FZAccordionTableView'
1212
end

FZAccordionTableView/FZAccordionTableView.h

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,30 @@
11
//
22
// FZAccordionTableView.h
3-
// FZAccordionTableViewTest
3+
// FZAccordionTableView
44
//
55
// Created by Krisjanis Gaidis on 7/31/14.
66
// Copyright (c) 2015 Fuzz Productions, LLC. All rights reserved.
77
//
8+
// This code is distributed under the terms and conditions of the MIT license.
9+
//
10+
// Permission is hereby granted, free of charge, to any person obtaining a copy
11+
// of this software and associated documentation files (the "Software"), to
12+
// deal in the Software without restriction, including without limitation the
13+
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
14+
// sell copies of the Software, and to permit persons to whom the Software is
15+
// furnished to do so, subject to the following conditions:
16+
//
17+
// The above copyright notice and this permission notice shall be included in
18+
// all copies or substantial portions of the Software.
19+
//
20+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
25+
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
26+
// IN THE SOFTWARE.
27+
//
828

929
#import <UIKit/UIKit.h>
1030

FZAccordionTableView/FZAccordionTableView.m

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,30 @@
11
//
22
// FZAccordionTableView.m
3-
// FZAccordionTableViewTest
3+
// FZAccordionTableView
44
//
55
// Created by Krisjanis Gaidis on 7/31/14.
66
// Copyright (c) 2015 Fuzz Productions, LLC. All rights reserved.
77
//
8+
// This code is distributed under the terms and conditions of the MIT license.
9+
//
10+
// Permission is hereby granted, free of charge, to any person obtaining a copy
11+
// of this software and associated documentation files (the "Software"), to
12+
// deal in the Software without restriction, including without limitation the
13+
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
14+
// sell copies of the Software, and to permit persons to whom the Software is
15+
// furnished to do so, subject to the following conditions:
16+
//
17+
// The above copyright notice and this permission notice shall be included in
18+
// all copies or substantial portions of the Software.
19+
//
20+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
25+
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
26+
// IN THE SOFTWARE.
27+
//
828

929
#import "FZAccordionTableView.h"
1030
#import <objc/runtime.h>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The module is made to be very easy to use and no modifications are necessary to
4545
## How To Use?
4646
### Steps:
4747

48-
1. Add to Podfile: `pod 'FZAccordionTableView', '~> 0.1.0'`
48+
1. Add to Podfile: `pod 'FZAccordionTableView', '~> 0.1.1'`
4949
2. Subclass your `UITableView` with `FZAccordionTableView`
5050
3. Subclass your `UITableViewHeaderFooterView` with `FZAccordionTableViewHeaderView`
5151

0 commit comments

Comments
 (0)