uncov 0.1.1 → 0.2.0
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 +8 -0
- data/README.md +8 -6
- data/bin/uncov +0 -3
- data/lib/uncov/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d067117e871250575379fcc86cbb582cca891168eac9306387ccc401ca3748da
|
4
|
+
data.tar.gz: 30cd131f6cec97396aae3b49381496c463d5b5f5a288bedb44cef5b771f440b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae044aef14c3cef14a920e9c1ef2523281afa7ea5fbe013974bb7a9b1072b6b9bc775f3b778a4718588a9fcdf2084a05c502220fef5a7b60b495ef72ebd3b9af
|
7
|
+
data.tar.gz: 4495affb17702915bc59f2ef53b79b692da299a71752a7341423b64bb5600890b6c82ea047a65d868cd4c2e583f7f893c03d37b679e8f786d7ff52971cec75ed
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -16,9 +16,9 @@ Uncov analyzes test coverage for changed files in your Git repository, helping y
|
|
16
16
|
gem install uncov
|
17
17
|
```
|
18
18
|
|
19
|
-
Or add to your Gemfile:
|
19
|
+
Or add to your Gemfile (only for convenience):
|
20
20
|
```ruby
|
21
|
-
gem 'uncov'
|
21
|
+
gem 'uncov', require: false
|
22
22
|
```
|
23
23
|
|
24
24
|
## Usage
|
@@ -28,7 +28,7 @@ uncov
|
|
28
28
|
```
|
29
29
|
With options:
|
30
30
|
```bash
|
31
|
-
uncov --
|
31
|
+
uncov --target develop --path custom/coverage/path
|
32
32
|
```
|
33
33
|
Options
|
34
34
|
- `-t`, `--target BRANCH`: Target branch for comparison (default: main)
|
@@ -39,15 +39,17 @@ Options
|
|
39
39
|
|
40
40
|
## Requirements
|
41
41
|
|
42
|
-
- Ruby 2
|
42
|
+
- Ruby 3.2+
|
43
43
|
- A Git repository
|
44
44
|
- SimpleCov for test coverage
|
45
45
|
|
46
46
|
## Development
|
47
|
+
- `docker-compose build uncov` to (re-)build dev container,
|
47
48
|
- `docker-compose run uncov` to enter dev container,
|
48
49
|
- `bundle` to install dependencies,
|
49
|
-
- `
|
50
|
-
- `
|
50
|
+
- `rake` to run test and lint,
|
51
|
+
- `rake install` to install the gem,
|
52
|
+
- `uncov` to see uncovered changes (check itself)
|
51
53
|
|
52
54
|
## Contributing
|
53
55
|
Bug reports and pull requests are welcome on GitHub at https://github.com/mpapis/uncov.
|
data/bin/uncov
CHANGED
data/lib/uncov/version.rb
CHANGED