hastci 0.1.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 +7 -0
- data/.envrc +5 -0
- data/.rspec +3 -0
- data/.standard.yml +7 -0
- data/.zed/settings.json +24 -0
- data/CHANGELOG.md +5 -0
- data/CODE_OF_CONDUCT.md +132 -0
- data/LICENSE.txt +21 -0
- data/README.md +43 -0
- data/Rakefile +17 -0
- data/bin/console +11 -0
- data/bin/hastci-rspec +5 -0
- data/bin/setup +8 -0
- data/devenv.lock +171 -0
- data/devenv.nix +23 -0
- data/devenv.yaml +6 -0
- data/lib/hastci/ack_worker.rb +146 -0
- data/lib/hastci/adapters/rspec/runner.rb +205 -0
- data/lib/hastci/api_client.rb +310 -0
- data/lib/hastci/api_error.rb +13 -0
- data/lib/hastci/claim_result.rb +27 -0
- data/lib/hastci/cli.rb +101 -0
- data/lib/hastci/config.rb +112 -0
- data/lib/hastci/configuration_error.rb +5 -0
- data/lib/hastci/error.rb +5 -0
- data/lib/hastci/error_collector.rb +18 -0
- data/lib/hastci/exit_codes.rb +13 -0
- data/lib/hastci/fatal_api_error.rb +5 -0
- data/lib/hastci/heartbeat.rb +84 -0
- data/lib/hastci/pact.rb +11 -0
- data/lib/hastci/queue_drained.rb +5 -0
- data/lib/hastci/retry_exhausted_error.rb +12 -0
- data/lib/hastci/retryable_error.rb +5 -0
- data/lib/hastci/session.rb +259 -0
- data/lib/hastci/task.rb +23 -0
- data/lib/hastci/task_buffer.rb +207 -0
- data/lib/hastci/task_result.rb +37 -0
- data/lib/hastci/version.rb +7 -0
- data/lib/hastci.rb +35 -0
- data/sig/hastci.rbs +4 -0
- data/spec/pacts/hastci_rspec-hastci_api.json +385 -0
- metadata +112 -0
metadata
ADDED
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: hastci
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Wojciech Wrona
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-01 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: rspec-core
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '3.3'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - ">="
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '3.3'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: zeitwerk
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - "~>"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '2.6'
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '2.6'
|
|
40
|
+
email:
|
|
41
|
+
- wojtodzio@gmail.com
|
|
42
|
+
executables:
|
|
43
|
+
- hastci-rspec
|
|
44
|
+
extensions: []
|
|
45
|
+
extra_rdoc_files: []
|
|
46
|
+
files:
|
|
47
|
+
- ".envrc"
|
|
48
|
+
- ".rspec"
|
|
49
|
+
- ".standard.yml"
|
|
50
|
+
- ".zed/settings.json"
|
|
51
|
+
- CHANGELOG.md
|
|
52
|
+
- CODE_OF_CONDUCT.md
|
|
53
|
+
- LICENSE.txt
|
|
54
|
+
- README.md
|
|
55
|
+
- Rakefile
|
|
56
|
+
- bin/console
|
|
57
|
+
- bin/hastci-rspec
|
|
58
|
+
- bin/setup
|
|
59
|
+
- devenv.lock
|
|
60
|
+
- devenv.nix
|
|
61
|
+
- devenv.yaml
|
|
62
|
+
- lib/hastci.rb
|
|
63
|
+
- lib/hastci/ack_worker.rb
|
|
64
|
+
- lib/hastci/adapters/rspec/runner.rb
|
|
65
|
+
- lib/hastci/api_client.rb
|
|
66
|
+
- lib/hastci/api_error.rb
|
|
67
|
+
- lib/hastci/claim_result.rb
|
|
68
|
+
- lib/hastci/cli.rb
|
|
69
|
+
- lib/hastci/config.rb
|
|
70
|
+
- lib/hastci/configuration_error.rb
|
|
71
|
+
- lib/hastci/error.rb
|
|
72
|
+
- lib/hastci/error_collector.rb
|
|
73
|
+
- lib/hastci/exit_codes.rb
|
|
74
|
+
- lib/hastci/fatal_api_error.rb
|
|
75
|
+
- lib/hastci/heartbeat.rb
|
|
76
|
+
- lib/hastci/pact.rb
|
|
77
|
+
- lib/hastci/queue_drained.rb
|
|
78
|
+
- lib/hastci/retry_exhausted_error.rb
|
|
79
|
+
- lib/hastci/retryable_error.rb
|
|
80
|
+
- lib/hastci/session.rb
|
|
81
|
+
- lib/hastci/task.rb
|
|
82
|
+
- lib/hastci/task_buffer.rb
|
|
83
|
+
- lib/hastci/task_result.rb
|
|
84
|
+
- lib/hastci/version.rb
|
|
85
|
+
- sig/hastci.rbs
|
|
86
|
+
- spec/pacts/hastci_rspec-hastci_api.json
|
|
87
|
+
homepage: https://github.com/wojtodzio/HastCI-Ruby
|
|
88
|
+
licenses:
|
|
89
|
+
- MIT
|
|
90
|
+
metadata:
|
|
91
|
+
allowed_push_host: https://rubygems.org
|
|
92
|
+
homepage_uri: https://github.com/wojtodzio/HastCI-Ruby
|
|
93
|
+
source_code_uri: https://github.com/wojtodzio/HastCI-Ruby
|
|
94
|
+
changelog_uri: https://github.com/wojtodzio/HastCI-Ruby/blob/main/CHANGELOG.md
|
|
95
|
+
rdoc_options: []
|
|
96
|
+
require_paths:
|
|
97
|
+
- lib
|
|
98
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
99
|
+
requirements:
|
|
100
|
+
- - ">="
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: 3.1.0
|
|
103
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
104
|
+
requirements:
|
|
105
|
+
- - ">="
|
|
106
|
+
- !ruby/object:Gem::Version
|
|
107
|
+
version: '0'
|
|
108
|
+
requirements: []
|
|
109
|
+
rubygems_version: 3.6.9
|
|
110
|
+
specification_version: 4
|
|
111
|
+
summary: Client for HastCI coordinated test runner plus RSpec adapter
|
|
112
|
+
test_files: []
|