gitlab-cloud-connector 0.2.6 → 1.0.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 17fe80dc098578ea54c50cf02e06e83bb516a4b18d6fbb649d9fd7d593e853c8
|
4
|
+
data.tar.gz: 89cbb45796d3eaa078a36e084b872f7b820f6fbf85fb745490cb164c52a66447
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 52f2b3ac0efb7d0aff0a360bf2272cdaf3151a8b912ce3d60503ac0cb2297f72809e879254751afeec188d7976c80b94f5f1fcd318792559f3460a7f32de8331
|
7
|
+
data.tar.gz: a4f104be9c1c99486d2b44a5183aba2c71d2f398cb4454557e27684e2669ac7c95394c6abe4321fb3f2e928ed59617a917886431fdf87c1e136255270bef8fa5
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ Ruby gem containing shared code for Cloud Connector token issuers (GitLab, Custo
|
|
7
7
|
We expect Bundler is used to manage dependencies. To add the dependency, add it to `Gemfile`:
|
8
8
|
|
9
9
|
```Gemfile
|
10
|
-
gem "gitlab-cloud-connector", "~> 0.
|
10
|
+
gem "gitlab-cloud-connector", "~> 1.0.0", require: 'gitlab/cloud_connector'
|
11
11
|
```
|
12
12
|
|
13
13
|
## Usage
|
@@ -41,7 +41,7 @@ add_ons:
|
|
41
41
|
`DataModels` are the core data structures in the Cloud Connector. Each model inherits from `DataModel::Base`. The data is loaded from YAML files into memory at runtime, making it efficient for read operations and relationship traversal.
|
42
42
|
|
43
43
|
```ruby
|
44
|
-
require 'cloud_connector'
|
44
|
+
require 'gitlab/cloud_connector'
|
45
45
|
|
46
46
|
# Find unit primitive by name
|
47
47
|
# Note: value should be a symbol (e.g., `:duo_chat` instead of `'duo_chat'`).
|
@@ -0,0 +1,12 @@
|
|
1
|
+
---
|
2
|
+
name: explain_terminal
|
3
|
+
description: Explain terminal or command line interface output.
|
4
|
+
cut_off_date: 2024-10-17T00:00:00+00:00
|
5
|
+
group: group::duo_chat
|
6
|
+
feature_category: duo_chat
|
7
|
+
documentation_url: "" # To be added: https://gitlab.com/gitlab-org/gitlab/-/issues/504104
|
8
|
+
backend_services:
|
9
|
+
- ai_gateway
|
10
|
+
add_ons:
|
11
|
+
- duo_pro
|
12
|
+
- duo_enterprise
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitlab-cloud-connector
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nikola Milojevic
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -132,6 +132,7 @@ files:
|
|
132
132
|
- config/unit_primitives/duo_chat.yml
|
133
133
|
- config/unit_primitives/duo_workflow_execute_workflow.yml
|
134
134
|
- config/unit_primitives/explain_code.yml
|
135
|
+
- config/unit_primitives/explain_terminal.yml
|
135
136
|
- config/unit_primitives/explain_vulnerability.yml
|
136
137
|
- config/unit_primitives/fix_code.yml
|
137
138
|
- config/unit_primitives/generate_code.yml
|
@@ -159,7 +160,7 @@ files:
|
|
159
160
|
- config/unit_primitives/summarize_review.yml
|
160
161
|
- config/unit_primitives/troubleshoot_job.yml
|
161
162
|
- config/unit_primitives/write_tests.yml
|
162
|
-
- lib/cloud_connector.rb
|
163
|
+
- lib/gitlab/cloud_connector.rb
|
163
164
|
- lib/gitlab/cloud_connector/available_services_generator.rb
|
164
165
|
- lib/gitlab/cloud_connector/configuration.rb
|
165
166
|
- lib/gitlab/cloud_connector/data_model/associations.rb
|
File without changes
|