gitlab-crystalball 0.8.0 → 0.8.1

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/lib/crystalball/version.rb +1 -1
  4. metadata +22 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7ec4fa9b1270e8b3aec30a4b7d5d10968278d7c588b3c954b3aff25dacadfa8a
4
- data.tar.gz: ce71ab46817998338ef0cf7d19d52eae19a9b33ef663c0e63b920691bb990afb
3
+ metadata.gz: 4ecaca1010fa8832b924a6acd3e9163175ffa144a13b8d298ee35d5b8baaf546
4
+ data.tar.gz: 84af3bed1b01cdd235c881e948c033da9a630102ad6133ac3b181df24dc52545
5
5
  SHA512:
6
- metadata.gz: 215d5ca4f23d09a63c0df24d125374bbe36a6730f3386defb0c2195ad804cdff2140d114edbb5dd6e686f1708daa9e88c89ef9098c231a9ac18a1c02378e86ad
7
- data.tar.gz: 396ee4f17aadc5422bbe4da993e8ef7d7e2f7f246b154d7b0ce04b6bae9517294df2e382bac964390ab45795c806d768e2ccc8dad5b57c8ad4bd70d479745e5a
6
+ metadata.gz: e9fac346de4eb92f888b3fe3cad20c5618058f329c76b7c3b08e61b2ac0ac913f2e52f650c568b017cb38280ee4dd62f1ae68c3155eacc31f1efbfdb33e9582c
7
+ data.tar.gz: d9b2d7d86a787e8bed3c4ade3561d58593f8f146a477babfab4ed63a638b9c2d52059b44777dc250f1eec082f360f285effa1c7054f7569175284b1c78ed549a
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Crystalball
2
2
 
3
- ![Build Status](https://gitlab.com/acunskis/crystalball/badges/main/pipeline.svg)
4
- ![Test Coverage](https://gitlab.com/acunskis/crystalball/badges/main/coverage.svg?job=rspec)
3
+ ![Build Status](https://gitlab.com/gitlab-org/ruby/gems/crystalball/badges/main/pipeline.svg)
4
+ ![Test Coverage](https://gitlab.com/gitlab-org/ruby/gems/crystalball/badges/main/coverage.svg?job=rspec%20spec)
5
5
 
6
6
  Crystalball is a Ruby library which implements [Regression Test Selection mechanism](https://tenderlovemaking.com/2015/02/13/predicting-test-failues.html) originally published by Aaron Patterson.
7
7
  Its main purpose is to select a minimal subset of your test suite which should be run to ensure your changes didn't break anything.
@@ -30,11 +30,11 @@ Or install it yourself as:
30
30
 
31
31
  ## Usage
32
32
 
33
- Please see our [official documentation](https://gitlab.com/acunskis/crystalball/-/blob/main/docs/index.md).
33
+ Please see our [official documentation](https://gitlab.com/gitlab-org/ruby/gems/crystalball/-/blob/main/docs/index.md).
34
34
 
35
35
  ### Versioning
36
36
 
37
- We use [semantic versioning](https://semver.org/) for our [releases](https://gitlab.com/acunskis/crystalball/-/releases).
37
+ We use [semantic versioning](https://semver.org/) for our [releases](https://gitlab.com/gitlab-org/ruby/gems/crystalball/-/releases).
38
38
 
39
39
  ## Development
40
40
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Crystalball
4
- VERSION = "0.8.0"
4
+ VERSION = "0.8.1"
5
5
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitlab-crystalball
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Developer Experience Team
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-05-12 00:00:00.000000000 Z
10
+ date: 2025-05-13 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: git
@@ -23,6 +23,20 @@ dependencies:
23
23
  - - "<"
24
24
  - !ruby/object:Gem::Version
25
25
  version: '4'
26
+ - !ruby/object:Gem::Dependency
27
+ name: ostruct
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '1'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "<"
38
+ - !ruby/object:Gem::Version
39
+ version: '1'
26
40
  - !ruby/object:Gem::Dependency
27
41
  name: actionview
28
42
  requirement: !ruby/object:Gem::Requirement
@@ -286,14 +300,14 @@ files:
286
300
  - lib/crystalball/source_diff/file_diff.rb
287
301
  - lib/crystalball/source_diff/formatting_checker.rb
288
302
  - lib/crystalball/version.rb
289
- homepage: https://gitlab.com/acunskis/crystalball
303
+ homepage: https://gitlab.com/gitlab-org/ruby/gems/crystalball
290
304
  licenses: []
291
305
  metadata:
292
- bug_tracker_uri: https://gitlab.com/acunskis/crystalball/-/issues
293
- changelog_uri: https://gitlab.com/acunskis/crystalball/-/releases
294
- documentation_uri: https://gitlab.com/acunskis/crystalball/-/blob/main/docs/index.md
295
- source_code_uri: https://gitlab.com/acunskis/crystalball/-/tree/main
296
- wiki_uri: https://gitlab.com/acunskis/crystalball/-/wikis/home
306
+ bug_tracker_uri: https://gitlab.com/gitlab-org/ruby/gems/crystalball/-/issues
307
+ changelog_uri: https://gitlab.com/gitlab-org/ruby/gems/crystalball/-/releases
308
+ documentation_uri: https://gitlab.com/gitlab-org/ruby/gems/crystalball/-/blob/main/docs/index.md
309
+ source_code_uri: https://gitlab.com/gitlab-org/ruby/gems/crystalball/-/tree/main
310
+ wiki_uri: https://gitlab.com/gitlab-org/ruby/gems/crystalball/-/wikis/home
297
311
  rubygems_mfa_required: 'false'
298
312
  rdoc_options: []
299
313
  require_paths: