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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2d0159da32804599de7afca67329f3d883857c049a2a681028d19cf940aec6be
4
- data.tar.gz: 7aba6e5fddd2025ca51f9038770f41bce2b9b7426201d16c568e9a565b76fb78
3
+ metadata.gz: d067117e871250575379fcc86cbb582cca891168eac9306387ccc401ca3748da
4
+ data.tar.gz: 30cd131f6cec97396aae3b49381496c463d5b5f5a288bedb44cef5b771f440b3
5
5
  SHA512:
6
- metadata.gz: 6e84d73647ed6996d0d3d85f05f87542e3f2820008332d842a3feb7d9b4d65b754bc986fcff2c0ae019bbb6e1e474de9cd09ffa82ba9591743af6f5c3e8a5e03
7
- data.tar.gz: 2151c2f5d2c43ef2a8e1095867a8238f47030a4ab9b4b5a136b8fde9cb1c015e3e6de98410cf95b68784d9af9f3e369c5f6b9710a666b6280da75d4226157b60
6
+ metadata.gz: ae044aef14c3cef14a920e9c1ef2523281afa7ea5fbe013974bb7a9b1072b6b9bc775f3b778a4718588a9fcdf2084a05c502220fef5a7b60b495ef72ebd3b9af
7
+ data.tar.gz: 4495affb17702915bc59f2ef53b79b692da299a71752a7341423b64bb5600890b6c82ea047a65d868cd4c2e583f7f893c03d37b679e8f786d7ff52971cec75ed
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.0] - 2025-04-29
4
+
5
+ ## 🐛 Fixes
6
+
7
+ - Remove need for bundler
8
+ - PR: #23
9
+
10
+
3
11
  ## [0.1.1] - 2025-04-28
4
12
 
5
13
  - releasing...
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 --branch develop --path custom/coverage/path
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.7+
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
- - `bundle exec rake` to run test and lint,
50
- - `bin/uncov` to see uncovered changes (check itself)
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
@@ -1,9 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
  # frozen_string_literal: true
3
3
 
4
- require 'bundler/setup'
5
- # :nocov:
6
4
  require 'uncov'
7
- # :nocov:
8
5
 
9
6
  Uncov::CLI.start(ARGV)
data/lib/uncov/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Uncov
4
- VERSION = '0.1.1'
4
+ VERSION = '0.2.0'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uncov
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michał Papis