Skip to content

Commit c7e2fc9

Browse files
Roman KyrylenkoRoman Kyrylenko
Roman Kyrylenko
authored and
Roman Kyrylenko
committed
fixed paths in pod spec;
1 parent 612e28c commit c7e2fc9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

DBClient.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "DBClient"
3-
s.version = "0.1.1"
3+
s.version = "0.1"
44
s.requires_arc = true
55
s.summary = "CoreData & Realm wrapper written on Swift"
66
s.homepage = ""
@@ -11,19 +11,19 @@ Pod::Spec.new do |s|
1111
s.homepage = 'https://yalantis.com/'
1212

1313
s.ios.deployment_target = "10.0"
14-
s.source_files = ['Source/Core/*']
14+
s.source_files = ['Source/Core/*.swift']
1515
s.dependency "Bolts-Swift", "~> 1.3.0"
1616
s.frameworks = ['Foundation']
1717

1818
s.default_subspec = "CoreData"
1919

2020
s.subspec "CoreData" do |spec|
21-
spec.source_files = ['CoreData/*']
21+
spec.source_files = ['Source/CoreData/*.swift']
2222
spec.frameworks = ['CoreData']
2323
end
2424

2525
s.subspec "Realm" do |spec|
26-
spec.source_files = ['Realm/*']
26+
spec.source_files = ['Source/Realm/*.swift']
2727
spec.dependency "RealmSwift", "~> 2.1.1"
2828
end
2929

0 commit comments

Comments
 (0)