-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Excluding
*plist
from source in order to fix cocoapod lint error
- Loading branch information
1 parent
d48a121
commit 013311f
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
4.0 | ||
5.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,10 +34,10 @@ Pod::Spec.new do |s| | |
"RxSwift Community" => "[email protected]" | ||
} | ||
s.source = { :git => "https://github.com/RxSwiftCommunity/RxWebKit.git", :tag => s.version.to_s } | ||
s.source_files = "RxWebKit/Sources/**/*.swift" | ||
|
||
s.source_files = "RxWebKit/Sources/**/*.{swift}" | ||
s.exclude_files = "RxWebKit/Sources/*.{plist}", "RxWebKit/Sources/**/*.{plist}", "RxWebKit/*.{plist}", | ||
s.ios.deployment_target = '8.0' | ||
|
||
s.swift_version = '5.0' | ||
s.dependency 'RxSwift', '~> 5.0' | ||
s.dependency 'RxCocoa', '~> 5.0' | ||
end |