Skip to content
This repository was archived by the owner on May 26, 2020. It is now read-only.

Commit f82f75d

Browse files
authored
Fix podspec (#11)
* Remove description which is redundant * Allow warnings until we have a first release
1 parent 05d2fa1 commit f82f75d

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ matrix:
6767
- script:
6868
- gem install cocoapods -v 1.1.1
6969
- pod repo update --silent
70-
- pod lib lint ReactiveCollections.podspec
70+
- pod lib lint --allow-warnings
7171
env:
7272
- JOB=PODSPEC
7373
- os: osx

ReactiveCollections.podspec

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
11
Pod::Spec.new do |s|
22
s.name = "ReactiveCollections"
33
s.version = "1.0.0-alpha.0"
4-
s.summary = ""
5-
s.description = <<-DESC
6-
Reactive collections for Swift using ReactiveSwift
7-
DESC
4+
s.summary = "Reactive collections for Swift using ReactiveSwift"
85
s.homepage = "https://github.com/RACCommunity/ReactiveCollections/"
9-
s.license = { :type => "MIT", :file => "LICENSE.md" }
6+
s.license = { :type => "MIT", :file => "LICENSE" }
107
s.author = "RACCommunity"
118

129
s.ios.deployment_target = "8.0"
1310
s.osx.deployment_target = "10.9"
1411
s.watchos.deployment_target = "2.0"
1512
s.tvos.deployment_target = "9.0"
1613
s.source = { :git => "https://github.com/RACCommunity/ReactiveCollections.git", :branch => "master" }
14+
1715
# Directory glob for all Swift files
1816
s.source_files = "Sources/*.{swift}"
19-
s.dependency 'ReactiveSwift', '~> 1.0'
17+
s.dependency 'ReactiveSwift', '~> 1.0.0-rc'
2018
end

0 commit comments

Comments
 (0)