cocoapods-stats 0.5.1 → 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -0
- data/Gemfile.lock +1 -1
- data/lib/cocoapods_plugin.rb +2 -2
- data/lib/cocoapods_stats/gem_version.rb +1 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b8838249649ff5e060f7b2cf7a40b1565437e104
|
4
|
+
data.tar.gz: aa218d36be49104b00fe97566f1c742a12479fd7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 873c7f03eccb5f86d566a3360c30e78fabe8250f32637dfc4f1a28ac533516996f8f4b4017c70fb94dc92ced75a70728e303e58f6d18aed7c2521308fda3c70a
|
7
|
+
data.tar.gz: b4c6cfcd6288dbfb87350305d40e8609201592e1552409e315fab8fd810f96ae176c73306b246d780c761080960fa79101ab276005e576ae1f0f5cfd22943985
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,18 @@
|
|
1
1
|
#CocoaPods Stats CHANGELOG
|
2
2
|
|
3
|
+
## Master
|
4
|
+
|
5
|
+
## 0.5.2
|
6
|
+
|
7
|
+
##### Bug Fixes
|
8
|
+
|
9
|
+
* Don't raise an exception when attempting to opt out.
|
10
|
+
[Samuel Giddins](https://github.com/segiddins)
|
11
|
+
|
3
12
|
## 0.5.1
|
4
13
|
|
14
|
+
##### Bug Fixes
|
15
|
+
|
5
16
|
* Skips pods that are not integrated ( and thus we can't get UUIDs )
|
6
17
|
[Samuel Giddins](https://github.com/CocoaPods/cocoapods-stats/pull/15)
|
7
18
|
|
data/Gemfile.lock
CHANGED
data/lib/cocoapods_plugin.rb
CHANGED
@@ -18,11 +18,11 @@ module CocoaPodsStats
|
|
18
18
|
require 'cocoapods_stats/sender'
|
19
19
|
|
20
20
|
validator = OptOutValidator.new
|
21
|
-
|
21
|
+
next unless validator.validates?
|
22
22
|
|
23
23
|
master_source = Pod::SourcesManager.master.first
|
24
24
|
validator = SpecsRepoValidator.new
|
25
|
-
|
25
|
+
next unless validator.validates?(master_source)
|
26
26
|
|
27
27
|
Pod::UI.titled_section 'Sending stats' do
|
28
28
|
master_pods = Set.new(master_source.pods)
|