Skip to content

Commit 98b857b

Browse files
committed
first commit
0 parents  commit 98b857b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+2776
-0
lines changed

.gitignore

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Xcode
2+
#
3+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
4+
5+
## Build generated
6+
build/
7+
DerivedData/
8+
9+
## Various settings
10+
*.pbxuser
11+
!default.pbxuser
12+
*.mode1v3
13+
!default.mode1v3
14+
*.mode2v3
15+
!default.mode2v3
16+
*.perspectivev3
17+
!default.perspectivev3
18+
xcuserdata/
19+
20+
## Other
21+
*.moved-aside
22+
*.xccheckout
23+
*.xcscmblueprint
24+
25+
## Obj-C/Swift specific
26+
*.hmap
27+
*.ipa
28+
*.dSYM.zip
29+
*.dSYM
30+
31+
## Playgrounds
32+
timeline.xctimeline
33+
playground.xcworkspace
34+
35+
# Swift Package Manager
36+
#
37+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
38+
# Packages/
39+
# Package.pins
40+
# Package.resolved
41+
.build/
42+
43+
# CocoaPods
44+
#
45+
# We recommend against adding the Pods directory to your .gitignore. However
46+
# you should judge for yourself, the pros and cons are mentioned at:
47+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
48+
#
49+
50+
Pods/
51+
52+
# Carthage
53+
#
54+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
55+
# Carthage/Checkouts
56+
57+
Carthage/Build
58+
59+
# fastlane
60+
#
61+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
62+
# screenshots whenever they are needed.
63+
# For more information about the recommended setup visit:
64+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
65+
66+
fastlane/report.xml
67+
fastlane/Preview.html
68+
fastlane/screenshots
69+
fastlane/test_output

Podfile

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
platform :ios, '8.0'
2+
3+
target 'Solidot' do
4+
use_frameworks!
5+
6+
pod 'Alamofire', '~> 4.5'
7+
8+
pod 'Kanna', :git => 'https://github.com/tid-kijyun/Kanna.git', :branch => 'feature/v4.0.0'
9+
10+
pod 'SwiftyJSON'
11+
12+
pod 'SnapKit', '~> 4.0.0'
13+
14+
pod 'Reachability'
15+
16+
pod 'SDWebImage', '~> 3.8', :subspecs => [
17+
'WebP'
18+
]
19+
end

Podfile.lock

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
PODS:
2+
- Alamofire (4.6.0)
3+
- Kanna (4.0.0)
4+
- libwebp (0.6.0):
5+
- libwebp/core (= 0.6.0)
6+
- libwebp/dec (= 0.6.0)
7+
- libwebp/demux (= 0.6.0)
8+
- libwebp/dsp (= 0.6.0)
9+
- libwebp/enc (= 0.6.0)
10+
- libwebp/mux (= 0.6.0)
11+
- libwebp/utils (= 0.6.0)
12+
- libwebp/webp (= 0.6.0)
13+
- libwebp/core (0.6.0):
14+
- libwebp/webp
15+
- libwebp/dec (0.6.0):
16+
- libwebp/core
17+
- libwebp/demux (0.6.0):
18+
- libwebp/core
19+
- libwebp/dsp (0.6.0):
20+
- libwebp/core
21+
- libwebp/enc (0.6.0):
22+
- libwebp/core
23+
- libwebp/mux (0.6.0):
24+
- libwebp/core
25+
- libwebp/utils (0.6.0):
26+
- libwebp/core
27+
- libwebp/webp (0.6.0)
28+
- Reachability (3.2)
29+
- SDWebImage/Core (3.8.2)
30+
- SDWebImage/WebP (3.8.2):
31+
- libwebp
32+
- SDWebImage/Core
33+
- SnapKit (4.0.0)
34+
- SwiftyJSON (4.0.0)
35+
36+
DEPENDENCIES:
37+
- Alamofire (~> 4.5)
38+
- Kanna (from `https://github.com/tid-kijyun/Kanna.git`, branch `feature/v4.0.0`)
39+
- Reachability
40+
- SDWebImage/WebP (~> 3.8)
41+
- SnapKit (~> 4.0.0)
42+
- SwiftyJSON
43+
44+
EXTERNAL SOURCES:
45+
Kanna:
46+
:branch: feature/v4.0.0
47+
:git: https://github.com/tid-kijyun/Kanna.git
48+
49+
CHECKOUT OPTIONS:
50+
Kanna:
51+
:commit: 58e3513d20cd16fe8b9ff16b5a2b481fcd643499
52+
:git: https://github.com/tid-kijyun/Kanna.git
53+
54+
SPEC CHECKSUMS:
55+
Alamofire: f41a599bd63041760b26d393ec1069d9d7b917f4
56+
Kanna: d5ae2a26472f7e7a474e7f36a9cd8aa2c8c63ad3
57+
libwebp: 1d5a07c2eb97f9c31bd5f154bb82efc0ea67c6a2
58+
Reachability: 33e18b67625424e47b6cde6d202dce689ad7af96
59+
SDWebImage: 098e97e6176540799c27e804c96653ee0833d13c
60+
SnapKit: a42d492c16e80209130a3379f73596c3454b7694
61+
SwiftyJSON: 070dabdcb1beb81b247c65ffa3a79dbbfb3b48aa
62+
63+
PODFILE CHECKSUM: 49056acd9fc2ff677e8ec371d714742ac1023039
64+
65+
COCOAPODS: 1.3.1

0 commit comments

Comments
 (0)