alcove 0.2.1 → 0.2.2.pre.alpha.pre.62

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +13 -5
  2. data/README.md +3 -3
  3. data/lib/alcove.rb +3 -2
  4. data/lib/alcove/version.rb +1 -1
  5. metadata +18 -18
checksums.yaml CHANGED
@@ -1,7 +1,15 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 0aa5e1f41986f35df64c6c2bd3ddcbaae4c1a720
4
- data.tar.gz: 308e86ea178a6e3fb88f49b265f6764055e1f1ac
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ ZmU0MTlkNGE3ODViODAyZTA2NDVjYTliMjM0MGIxOTI4ZDJiODZlNQ==
5
+ data.tar.gz: !binary |-
6
+ MmFkMjA0NjdiYWViMjRmM2ZmMTg1MTQxZDExNzM3MmFkNDRkODRhZQ==
5
7
  SHA512:
6
- metadata.gz: f177594d0f9dac29911dda50e93f8a37b89507243073d82b9b1aa10e9f9f1f862b05e59b23aa2207b9095a315fe9045f37627bf9a28507e5fd5a3462d1bf27fa
7
- data.tar.gz: 91690dccda3ce111da44b047a05fddd74e5871ec5012df2ff0d7913f3b802e45b163916842d3f36c331000fff803f8c6a34b7bf194f62d91922ea4895cad90a3
8
+ metadata.gz: !binary |-
9
+ NzA0MjU1NGM5M2VjN2MyYjA1ZjM5NzQwNmExYjU0MDJmM2M5NWY2MGE1YjZh
10
+ M2M5NWU4ODBhODMzODI4MzA1YjQ0YTUwYTdlNjkxYjJiNTIyODgzMGVjYjY5
11
+ OTUyYTA5MTk4MDBlZmRkYWM3M2Q1YjFiODU1NWJjMTc5N2Q0MTA=
12
+ data.tar.gz: !binary |-
13
+ MWYzYjAxMjE2NTk5MzEzMDYwNGY4MTMwZjNhM2UwMDI3YTI1ZmFjMWE3MjEy
14
+ ZjVmNTM1NTU3MWRhMzExNTkwM2RiOTMyOGVjY2EzODY5MmY5YTk1ZjIzNTA3
15
+ N2VmMGNkZGEyZTU2OGE0MTM2YmQzNmNlMTAzYzYxMmY1ODA0MmQ=
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
- # Alcove [![Gem Version](https://badge.fury.io/rb/alcove.svg)](http://badge.fury.io/rb/alcove) [![Build Status](https://travis-ci.org/ioveracker/Alcove.svg?branch=master)](https://travis-ci.org/ioveracker/Alcove) [![Code Climate](https://codeclimate.com/github/ioveracker/Alcove/badges/gpa.svg)](https://codeclimate.com/github/ioveracker/Alcove)
2
- Painless code coverage reporting for Objective-C projects. Most of the heavy lifting is done by the venerable lcov. Alcove simply searches the nooks and crannies to collect the data needed to generate the report and ties everything together for you. Best of all, it's a gem with minimal depedencies, so installation is quick and painless.
1
+ # Alcove [![Gem Version](https://badge.fury.io/rb/alcove.svg)](http://badge.fury.io/rb/alcove) [![Build Status](https://travis-ci.org/ioveracker/Alcove.svg?branch=master)](https://travis-ci.org/ioveracker/Alcove) [![Code Climate](https://codeclimate.com/github/ioveracker/Alcove/badges/gpa.svg)](https://codeclimate.com/github/ioveracker/Alcove) [![Test Coverage](https://codeclimate.com/github/ioveracker/Alcove/badges/coverage.svg)](https://codeclimate.com/github/ioveracker/Alcove)
2
+ Painless code coverage reporting for Objective-C projects. Most of the heavy lifting is done by the venerable lcov. Alcove simply searches the nooks and crannies to collect the data needed to generate the report and ties everything together for you. Best of all, it's a gem with minimal dependencies, so installation is quick and painless.
3
3
 
4
4
  ## Installation
5
5
 
@@ -45,4 +45,4 @@ Use this option to specify the directory to be searched for your product. Alcov
45
45
  If something doesn't seem quite right, try cleaning the build folder and then run the tests again. Make sure you can generate a report for the [demo project](https://github.com/ioveracker/AlcoveDemo), too.
46
46
 
47
47
  ## Thanks
48
- Shoutout to [@NateBank](https://github.com/NateBank) for the [name suggestion](https://www.youtube.com/watch?v=j1Q-a5zCmhc) and inspiration.
48
+ Shoutout to [@NateBank](https://github.com/NateBank) for the [name suggestion](https://www.youtube.com/watch?v=j1Q-a5zCmhc) and inspiration.
@@ -37,11 +37,12 @@ class Alcove
37
37
  #
38
38
  # Returns nothing.
39
39
  def copy_input_files_to_temp(search_directory, product_name)
40
+ build_path = "/Intermediates/#{product_name}.build/"
40
41
  puts " 📦 Gathering .gcno and .gcda files..." if @verbose
41
- puts " Searching in #{search_directory}..." if @verbose
42
+ puts " Searching in #{search_directory} for #{build_path}..." if @verbose
42
43
  found_files = false
43
44
  Find.find(search_directory) do |path|
44
- if path.match(/#{product_name}.*\.gcda\Z/) || path.match(/#{product_name}.*\.gcno\Z/)
45
+ if path.match(/#{build_path}.*\.gcda\Z/) || path.match(/#{build_path}.*\.gcno\Z/)
45
46
  found_files = true
46
47
  puts " 👍 .#{path.sub(search_directory, "")}".green if @verbose
47
48
  FileUtils.cp(path, "#{Alcove::TEMP_DIR}/")
@@ -1,3 +1,3 @@
1
1
  class Alcove
2
- VERSION = '0.2.1'
2
+ VERSION = '0.2.2'
3
3
  end
metadata CHANGED
@@ -1,69 +1,69 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alcove
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2.pre.alpha.pre.62
5
5
  platform: ruby
6
6
  authors:
7
7
  - Isaac Overacker
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-27 00:00:00.000000000 Z
11
+ date: 2015-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colored
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ~>
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.2'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ~>
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.2'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
31
+ - - ! '>='
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ">="
38
+ - - ! '>='
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rspec
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ">="
45
+ - - ! '>='
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ">="
52
+ - - ! '>='
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: minitest
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - "~>"
59
+ - - ~>
60
60
  - !ruby/object:Gem::Version
61
61
  version: '5.5'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - "~>"
66
+ - - ~>
67
67
  - !ruby/object:Gem::Version
68
68
  version: '5.5'
69
69
  description: Painless code coverage reporting for Xcode projects written in Objective-C.
@@ -73,11 +73,11 @@ executables:
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
- - lib/alcove/version.rb
77
- - lib/alcove.rb
78
- - bin/alcove
79
- - README.md
80
76
  - LICENSE
77
+ - README.md
78
+ - bin/alcove
79
+ - lib/alcove.rb
80
+ - lib/alcove/version.rb
81
81
  homepage: https://github.com/ioveracker/alcove
82
82
  licenses:
83
83
  - MIT
@@ -88,17 +88,17 @@ require_paths:
88
88
  - lib
89
89
  required_ruby_version: !ruby/object:Gem::Requirement
90
90
  requirements:
91
- - - ">="
91
+ - - ! '>='
92
92
  - !ruby/object:Gem::Version
93
93
  version: '0'
94
94
  required_rubygems_version: !ruby/object:Gem::Requirement
95
95
  requirements:
96
- - - ">="
96
+ - - ! '>'
97
97
  - !ruby/object:Gem::Version
98
- version: '0'
98
+ version: 1.3.1
99
99
  requirements: []
100
100
  rubyforge_project:
101
- rubygems_version: 2.0.14
101
+ rubygems_version: 2.4.5
102
102
  signing_key:
103
103
  specification_version: 4
104
104
  summary: Painless code coverage reporting for Objective-C.