gitlab-topology-service-client 0.0.rc.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 8c63e1ba7ab9c4c7549f7248eeea1d69249b22f776c0bb9a81246e90496efcc5
4
+ data.tar.gz: 5e6a48625a5c6f85a5ef6aeab4076d21d3e7c8bc419d3cbb667d477266e8aefb
5
+ SHA512:
6
+ metadata.gz: 476d6459ccfc0d4161b221383c65fb475748966c27a612aceeb3414d5f40d50fd39c6b39b9bc4a56d04000037c364ab8a50f536a8ed6f86b4f0617d22a38281c
7
+ data.tar.gz: f8eaffe77d2264b5b878c1c124d884c9b86ba2dac3bf6fb4ef0147744c35860ef4423304bd989c87a1e30c73b3de896a8177e7b0bb8a68434038f0099de94f0d
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,13 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.6
3
+
4
+ Style/StringLiterals:
5
+ Enabled: true
6
+ EnforcedStyle: double_quotes
7
+
8
+ Style/StringLiteralsInInterpolation:
9
+ Enabled: true
10
+ EnforcedStyle: double_quotes
11
+
12
+ Layout/LineLength:
13
+ Max: 120
data/Gemfile ADDED
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in ruby.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+ gem "rspec", "~> 3.0"
10
+ gem "rubocop", "~> 1.21"
data/Gemfile.lock ADDED
@@ -0,0 +1,68 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ gitlab-global-service-client-poc (0.1)
5
+ grpc
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ ast (2.4.2)
11
+ diff-lcs (1.5.1)
12
+ google-protobuf (3.25.3-aarch64-linux)
13
+ googleapis-common-protos-types (1.12.0)
14
+ google-protobuf (~> 3.18)
15
+ grpc (1.61.0-aarch64-linux)
16
+ google-protobuf (~> 3.25)
17
+ googleapis-common-protos-types (~> 1.0)
18
+ json (2.7.1)
19
+ language_server-protocol (3.17.0.3)
20
+ parallel (1.24.0)
21
+ parser (3.3.0.5)
22
+ ast (~> 2.4.1)
23
+ racc
24
+ racc (1.7.3)
25
+ rainbow (3.1.1)
26
+ rake (13.1.0)
27
+ regexp_parser (2.9.0)
28
+ rexml (3.2.6)
29
+ rspec (3.13.0)
30
+ rspec-core (~> 3.13.0)
31
+ rspec-expectations (~> 3.13.0)
32
+ rspec-mocks (~> 3.13.0)
33
+ rspec-core (3.13.0)
34
+ rspec-support (~> 3.13.0)
35
+ rspec-expectations (3.13.0)
36
+ diff-lcs (>= 1.2.0, < 2.0)
37
+ rspec-support (~> 3.13.0)
38
+ rspec-mocks (3.13.0)
39
+ diff-lcs (>= 1.2.0, < 2.0)
40
+ rspec-support (~> 3.13.0)
41
+ rspec-support (3.13.0)
42
+ rubocop (1.60.2)
43
+ json (~> 2.3)
44
+ language_server-protocol (>= 3.17.0)
45
+ parallel (~> 1.10)
46
+ parser (>= 3.3.0.2)
47
+ rainbow (>= 2.2.2, < 4.0)
48
+ regexp_parser (>= 1.8, < 3.0)
49
+ rexml (>= 3.2.5, < 4.0)
50
+ rubocop-ast (>= 1.30.0, < 2.0)
51
+ ruby-progressbar (~> 1.7)
52
+ unicode-display_width (>= 2.4.0, < 3.0)
53
+ rubocop-ast (1.30.0)
54
+ parser (>= 3.2.1.0)
55
+ ruby-progressbar (1.13.0)
56
+ unicode-display_width (2.5.0)
57
+
58
+ PLATFORMS
59
+ aarch64-linux
60
+
61
+ DEPENDENCIES
62
+ gitlab-global-service-client-poc!
63
+ rake (~> 13.0)
64
+ rspec (~> 3.0)
65
+ rubocop (~> 1.21)
66
+
67
+ BUNDLED WITH
68
+ 2.4.4
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Gitlab
4
+ module Cells
5
+ module TopologyService
6
+ VERSION = '0.0.rc.1'
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'topology_service/version'
metadata ADDED
@@ -0,0 +1,63 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gitlab-topology-service-client
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.rc.1
5
+ platform: ruby
6
+ authors:
7
+ - Kamil Trzciński
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-05-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: grpc
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ description:
28
+ email:
29
+ - ayufan@ayufan.eu
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - ".rspec"
35
+ - ".rubocop.yml"
36
+ - Gemfile
37
+ - Gemfile.lock
38
+ - lib/gitlab/cells/topology_service.rb
39
+ - lib/gitlab/cells/topology_service/version.rb
40
+ homepage: https://gitlab.com/gitlab-org/cells/topology-service
41
+ licenses:
42
+ - MIT
43
+ metadata: {}
44
+ post_install_message:
45
+ rdoc_options: []
46
+ require_paths:
47
+ - lib
48
+ required_ruby_version: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 2.6.0
53
+ required_rubygems_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">"
56
+ - !ruby/object:Gem::Version
57
+ version: 1.3.1
58
+ requirements: []
59
+ rubygems_version: 3.4.4
60
+ signing_key:
61
+ specification_version: 4
62
+ summary: Client library to interact with Topology Service for GitLab Cells architecture
63
+ test_files: []