Skip to content

Commit 71025c4

Browse files
Roman KyrylenkoRoman Kyrylenko
Roman Kyrylenko
authored and
Roman Kyrylenko
committed
upload project
0 parents  commit 71025c4

18 files changed

+1341
-0
lines changed

.gitignore

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
.DS_Store
2+
# Build generated
3+
build/
4+
DerivedData/
5+
6+
# Various settings
7+
*.pbxuser
8+
!default.pbxuser
9+
*.mode1v3
10+
!default.mode1v3
11+
*.mode2v3
12+
!default.mode2v3
13+
*.perspectivev3
14+
!default.perspectivev3
15+
xcuserdata/
16+
17+
# Other
18+
*.moved-aside
19+
*.xcuserstate
20+
21+
# Obj-C/Swift specific
22+
*.hmap
23+
*.ipa
24+
*.dSYM.zip
25+
*.dSYM
26+
27+
# Playgrounds
28+
timeline.xctimeline
29+
playground.xcworkspace
30+
31+
# CocoaPods
32+
Pods/
33+
Podfile.lock

.swift-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0

DBClient.podspec

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
Pod::Spec.new do |s|
2+
s.name = "DBClient"
3+
s.version = "0.1"
4+
s.requires_arc = true
5+
s.summary = "CoreData & Realm wrapper written on Swift"
6+
s.homepage = ""
7+
s.license = 'MIT'
8+
s.author = { "Yalantis" => "[email protected]" }
9+
s.source = { :path => "." }
10+
s.social_media_url = 'https://yalantis.com/'
11+
s.homepage = 'https://yalantis.com/'
12+
13+
s.ios.deployment_target = "10.0"
14+
s.source_files = ['DBClient/Core/**/*.{swift}']
15+
s.dependency "Bolts-Swift", "~> 1.3.0"
16+
s.frameworks = ['Foundation']
17+
18+
s.default_subspec = "CoreData"
19+
20+
s.subspec "CoreData" do |spec|
21+
spec.source_files = ['DBClient/CoreData/*']
22+
spec.frameworks = ['CoreData']
23+
end
24+
25+
s.subspec "Realm" do |spec|
26+
spec.source_files = ['DBClient/Realm/*']
27+
spec.dependency "RealmSwift", "~> 2.1.1"
28+
end
29+
30+
end

0 commit comments

Comments
 (0)