cocoapods-coverage 0.0.3 → 0.0.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1c9e82a7acd85eb25edebd586e482c758d1d6b3c
4
- data.tar.gz: 40abb5e2fc8a2244fe39cf4932120ab4649cd8d8
3
+ metadata.gz: fa7723f19c50be412f43238cdebb8ded02f4e920
4
+ data.tar.gz: df274eef23ef2058cb0da885e14eb8c87c0ead58
5
5
  SHA512:
6
- metadata.gz: 061256e5f3cd0f8d64923b8b3f7e66e0dec2939abc0953634298b1761c18a6c08f335e58f923f30a675024c62e3da9d69fbeb4dde3eb826af5c9a9ed21a3bd49
7
- data.tar.gz: d2a9b7428bd4ca552f2b9db21aae7c64c154caceb4c9c1bd7d655372e57d3e78dd07f6666c8cee2cd2090302d7de511dd00867b262ea5318fadd83ec85669621
6
+ metadata.gz: 140948fad06abd0dcaee5d1c786dc2610e17bbc427cf4bf6b28a476870d4dd6a87a6e04c94ff7cb64013f32527c2056dddbc33ff8f3e340d50b554411e1d0022
7
+ data.tar.gz: 2ddfaff66f346a52a935df304b7fbf49fecf6756b934e3acd476667e641343f19432b8ea84341556f841f7363a946686cce5f93315eb3c7b82160f97f34aea5a
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cocoapods-coverage (0.0.2)
4
+ cocoapods-coverage (0.0.4)
5
5
  cocoapods-testing (>= 0.0.4)
6
6
  slather
7
7
 
@@ -13,7 +13,7 @@ GEM
13
13
  i18n (~> 0.6, >= 0.6.4)
14
14
  multi_json (~> 1.0)
15
15
  clamp (0.6.3)
16
- cocoapods-testing (0.0.4)
16
+ cocoapods-testing (0.0.6)
17
17
  xctasks
18
18
  colored (1.2)
19
19
  i18n (0.6.11)
@@ -22,10 +22,10 @@ GEM
22
22
  nokogiri (1.6.3.1)
23
23
  mini_portile (= 0.6.0)
24
24
  rake (10.3.2)
25
- slather (1.2.1)
25
+ slather (1.3.0)
26
26
  clamp (~> 0.6)
27
27
  xcodeproj (~> 0.17)
28
- xcodeproj (0.19.1)
28
+ xcodeproj (0.19.2)
29
29
  CFPropertyList (~> 2.2)
30
30
  activesupport (~> 3.0)
31
31
  colored (~> 1.2)
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2014 Boris Bügling <boris@icculus.org>
1
+ Copyright (c) 2014 Boris Bügling <boris@buegling.com>
2
2
 
3
3
  MIT License
4
4
 
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # cocoapods-coverage
2
2
 
3
- A description of cocoapods-coverage.
3
+ A [CocoaPods][3] plugin which generates code coverage statistics for Pods.
4
4
 
5
5
  ## Installation
6
6
 
@@ -8,4 +8,10 @@ A description of cocoapods-coverage.
8
8
 
9
9
  ## Usage
10
10
 
11
- $ pod spec coverage POD_NAME
11
+ $ pod lib coverage
12
+
13
+ This will run all your tests and compute coverage information. Locally, you will see a textual summary whereas on [Travis CI][1], the statistics will get uploaded to [Coveralls][2].
14
+
15
+ [1]: http://travis-ci.org
16
+ [2]: http://coveralls.io
17
+ [3]: http://cocoapods.org
@@ -8,11 +8,11 @@ Gem::Specification.new do |spec|
8
8
  spec.version = CocoapodsCoverage::VERSION
9
9
  spec.authors = ['Boris Bügling']
10
10
  spec.email = ['boris@bügling.com']
11
- spec.summary = %q{Generate code coverage statistics for Pods.}
11
+ spec.summary = 'Generate code coverage statistics for Pods.'
12
12
  spec.homepage = 'https://github.com/viteinfinite/cocoapods-coverage'
13
13
  spec.license = 'MIT'
14
14
 
15
- spec.files = `git ls-files`.split($/)
15
+ spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
16
16
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
17
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
18
  spec.require_paths = ['lib']
@@ -1,3 +1,3 @@
1
1
  module CocoapodsCoverage
2
- VERSION = '0.0.3'
2
+ VERSION = '0.0.4'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-coverage
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Boris Bügling
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-17 00:00:00.000000000 Z
11
+ date: 2014-09-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cocoapods-testing