File tree 6 files changed +20
-20
lines changed
6 files changed +20
-20
lines changed Original file line number Diff line number Diff line change
1
+ 3.0.1
Original file line number Diff line number Diff line change 1
- # some rules are only opt-in
2
1
opt_in_rules :
3
2
- empty_count
4
- - missing_docs
3
+ # - missing_docs
4
+
5
+ disabled_rules :
6
+ - vertical_whitespace # Turn off until configurable to 2 newlines
5
7
6
- # paths to include during linting. `--path` is ignored if present.
7
8
included :
8
9
- Sources
9
10
10
- # paths to ignore during linting. Takes precedence over `included`.
11
11
excluded :
12
12
- Carthage
13
13
- Sources/Constants
14
14
15
- # configurable rules can be customized from this configuration file
16
- line_length : 200
15
+ line_length : 200
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
3
3
s . name = "CSVImporter"
4
- s . version = "1.2.0 "
4
+ s . version = "1.3.1 "
5
5
s . summary = "Import CSV files line by line with ease."
6
6
7
7
s . description = <<-DESC
@@ -24,7 +24,7 @@ Pod::Spec.new do |s|
24
24
s . source = { :git => "https://github.com/Flinesoft/CSVImporter.git" , :tag => "#{ s . version } " }
25
25
s . source_files = "Sources" , "Sources/**/*.swift"
26
26
s . framework = "Foundation"
27
- s . dependency "HandySwift" , "~> 1.2 "
28
- s . dependency "Dschee- FileKit" , "~> 3 .0"
27
+ s . dependency "HandySwift" , "~> 1.3 "
28
+ s . dependency "FileKit" , "~> 4 .0"
29
29
30
30
end
Original file line number Diff line number Diff line change 1
1
github "nvzqz/FileKit" "29e8c684fdb3018b3fe8ca6b84fe4fb06ef891bf"
2
2
github "Flinesoft/HandySwift" "1.3.0"
3
- github "Quick/Nimble" "8b71ca345b9b41e3555f87dd904c6f23e4ccdc34 "
4
- github "Quick/Quick" "505af8e6f9c85a2e243b36986ee2cf926cda5a7e "
3
+ github "Quick/Nimble" "76c4cb3567f3492c00e84a1000ba8622355c8323 "
4
+ github "Quick/Quick" "8e794df56011c6282f1074e8fd5c113d5f013e63 "
Original file line number Diff line number Diff line change 12
12
alt="codebeat badge">
13
13
</a>
14
14
<a href="https://github.com/Flinesoft/CSVImporter/releases">
15
- <img src="https://img.shields.io/badge/Version-1.2.0 -blue.svg"
16
- alt="Version: 1.2.0 ">
15
+ <img src="https://img.shields.io/badge/Version-1.3.1 -blue.svg"
16
+ alt="Version: 1.3.1 ">
17
17
</a>
18
- <img src="https://img.shields.io/badge/Swift-2.2 -FFAC45.svg"
19
- alt="Swift: 2.2 ">
20
- <img src="https://img.shields.io/badge/Platforms-iOS%20%7C%20tvOS%20%7C%20OS%20X -FF69B4.svg"
21
- alt="Platforms: iOS | tvOS | OS X ">
18
+ <img src="https://img.shields.io/badge/Swift-3 -FFAC45.svg"
19
+ alt="Swift: 3 ">
20
+ <img src="https://img.shields.io/badge/Platforms-iOS%20%7C%20tvOS%20%7C%20macOS -FF69B4.svg"
21
+ alt="Platforms: iOS | tvOS | macOS ">
22
22
<a href="https://github.com/Flinesoft/CSVImporter/blob/stable/LICENSE.md">
23
23
<img src="https://img.shields.io/badge/License-MIT-lightgrey.svg"
24
24
alt="License: MIT">
@@ -56,7 +56,7 @@ You can of course also just include this framework manually into your project by
56
56
Simply add this line to your Cartfile:
57
57
58
58
```
59
- github "Flinesoft/CSVImporter"
59
+ github "Flinesoft/CSVImporter" ~> 1.3
60
60
```
61
61
62
62
And run ` carthage update ` . Then drag & drop the HandySwift.framework in the Carthage/build folder to your project. Also do the same with the dependent frameworks ` Filekit ` and ` HandySwift ` . Now you can ` import CSVImporter ` in each class you want to use its features. Refer to the [ Carthage README] ( https://github.com/Carthage/Carthage#adding-frameworks-to-an-application ) for detailed / updated instructions.
@@ -71,7 +71,7 @@ platform :ios, '8.0'
71
71
use_frameworks!
72
72
73
73
target ' MyAppTarget' do
74
- pod ' CSVImporter' , ' ~> 1.1 '
74
+ pod ' CSVImporter' , ' ~> 1.3 '
75
75
end
76
76
```
77
77
Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >FMWK </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >1.2.0 </string >
18
+ <string >1.3.1 </string >
19
19
<key >CFBundleSignature </key >
20
20
<string >???? </string >
21
21
<key >CFBundleVersion </key >
You can’t perform that action at this time.
0 commit comments