hubburu 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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 4294b581d969d8d728290533d3b5e155560aa25f453cc756b49b703332431cf6
4
+ data.tar.gz: 1a372e3399431a3c73595369dc1518f2ca563afa37258bfef11a0541a63dcd52
5
+ SHA512:
6
+ metadata.gz: 3744e70c6f024bde95444aa1d84ae09b19b898e2398538881c6371f1c511d787dee271423e7349e0dd7f3baec1c9d0e2ff5ed4d34ab72f67f290c0f6551853be
7
+ data.tar.gz: 7c98bd76709c2c9d0ae5fd4691cea745bd18cafd53b13221166f04f9520bc00340aa3136aac60c6f327861d9a1515d539e44c1a3d83e4fbae5c0acbf9c730085
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/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2022-06-26
4
+
5
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at fredrikkadolfsson@gmail.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
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 hubburu.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "rubocop", "~> 1.21"
data/Gemfile.lock ADDED
@@ -0,0 +1,40 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ hubburu (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ ast (2.4.2)
10
+ parallel (1.22.1)
11
+ parser (3.1.2.0)
12
+ ast (~> 2.4.1)
13
+ rainbow (3.1.1)
14
+ rake (13.0.6)
15
+ regexp_parser (2.5.0)
16
+ rexml (3.2.5)
17
+ rubocop (1.30.1)
18
+ parallel (~> 1.10)
19
+ parser (>= 3.1.0.0)
20
+ rainbow (>= 2.2.2, < 4.0)
21
+ regexp_parser (>= 1.8, < 3.0)
22
+ rexml (>= 3.2.5, < 4.0)
23
+ rubocop-ast (>= 1.18.0, < 2.0)
24
+ ruby-progressbar (~> 1.7)
25
+ unicode-display_width (>= 1.4.0, < 3.0)
26
+ rubocop-ast (1.18.0)
27
+ parser (>= 3.1.1.0)
28
+ ruby-progressbar (1.11.0)
29
+ unicode-display_width (2.2.0)
30
+
31
+ PLATFORMS
32
+ x86_64-darwin-20
33
+
34
+ DEPENDENCIES
35
+ hubburu!
36
+ rake (~> 13.0)
37
+ rubocop (~> 1.21)
38
+
39
+ BUNDLED WITH
40
+ 2.3.9
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022 Fredrik Adolfsson
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,89 @@
1
+ [![Gem Version](https://badge.fury.io/rb/hubburu.svg)](https://rubygems.org/gems/hubburu)
2
+
3
+ # GraphQL Ruby Hubburu Plugin
4
+
5
+ A tracer for integrating Hubburu with GraphQL Ruby
6
+
7
+ ## Installation
8
+
9
+ Install by adding it to your Gemfile, then bundling.
10
+
11
+ ```
12
+ # Gemfile
13
+ gem 'hubburu'
14
+ ```
15
+
16
+ ## Usage
17
+
18
+ These are the integration points you need to make to integrate with Hubburu.
19
+
20
+ 1. Add your API key
21
+ 2. Upload schema SDL to Hubburu
22
+ 3. Send operation reports to Hubburu
23
+
24
+ ### Adding Your API Key
25
+
26
+ Register for Hubburu, and you will be able to access your API Key from there. The recommended way is to add it to your environment variables. You can also add it manually to the Hubburu SDK calls.
27
+
28
+ ### Upload schema
29
+
30
+ Either you can upload your schema on server startup. This is an OK way to do it but not suitable for all environments. If you want to manually send it (such as in a CI/CD pipeline), you can do so like this:
31
+
32
+ ```ruby
33
+ namespace :hubburu do
34
+ desc "register new schema version with hubburu"
35
+ task register: :environment do
36
+ api_key = ENV["HUBBURU_API_KEY"]
37
+ environment = ENV["HUBBURU_ENVIRONMENT"] || "default"
38
+
39
+ response = Hubburu.push_hubburu_schema(YOUR_SCHEMA, api_key, environment)
40
+ response_code = response.code.to_i
41
+
42
+ unless response_code >= 200 && response_code < 300
43
+ raise "Failed to upload schema to Hubburu (status #{response_code})"
44
+ end
45
+ end
46
+ end
47
+ ```
48
+
49
+ ### Send operation reports
50
+
51
+ This is done by adding the Hubburu tracer to the GraphQL schema.
52
+
53
+ ```ruby
54
+ require "hubburu"
55
+
56
+ class AppSchema < GraphQL::Schema
57
+ ...
58
+
59
+ use(Hubburu, request_id_context_key: :request_id)
60
+
61
+ use(Hubburu,
62
+ request_id_context_key: :request_id,
63
+ queue_method: ->(path, body, headers) { YOUR_ASYNCHRONOUS_WORKER_METHOD(path, body, headers) })
64
+
65
+ ...
66
+ end
67
+
68
+ ```
69
+
70
+ `request_id_context_key` & `queue_method` are optional. Omitting `queue_method` will send Hubburu reports immediate. Adding an asynchronous worker will allow you to configure queueing of the report sendouts. Example of a Sidekiq worker:
71
+
72
+ ```ruby
73
+ class HubburuUploadWorker
74
+ include Sidekiq::Worker
75
+ sidekiq_options queue: :low
76
+
77
+ def perform(url, body, headers)
78
+ Faraday.post(url, body, headers)
79
+ end
80
+ end
81
+ ```
82
+
83
+ ## Development & Testing
84
+
85
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
86
+
87
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
88
+
89
+ This plugin is being developed and tested in another repository. You are welcome to send bug reports either as an issue on Github or to [hello@hubburu.com](mailto:hello@hubburu.com).
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rubocop/rake_task"
5
+
6
+ RuboCop::RakeTask.new
7
+
8
+ task default: :rubocop
@@ -0,0 +1,199 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Hubburu
4
+ class Tracer
5
+ MAX_ERROR_BYTES = 1_000
6
+
7
+ def initialize(
8
+ schema,
9
+ api_key: Hubburu.api_key,
10
+ environment: Hubburu.environment,
11
+ push_schema_on_startup: false,
12
+ request_id_context_key: nil,
13
+ should_send: nil
14
+ )
15
+ @api_key = api_key
16
+ @environment = environment
17
+ @request_id_context_key = request_id_context_key
18
+ @schema_sha = sha256(GraphQL::Schema::Printer.print_schema(schema))
19
+ @should_send = should_send
20
+ @headers = {
21
+ "X-Api-Key" => @api_key,
22
+ "Content-Type" => "application/json"
23
+ }
24
+
25
+ @query_signature = query_signature || proc do |query|
26
+ query.query_string
27
+ end
28
+
29
+ Hubburu.push_hubburu_schema(schema, @api_key, @environment) if push_schema_on_startup
30
+ end
31
+
32
+ attr_reader :query_signature
33
+
34
+ def trace(key, data)
35
+ case key
36
+ when "validate"
37
+ result = yield
38
+
39
+ query = data.fetch(:query)
40
+ query.context.namespace(self.class).merge!(
41
+ requestId: query.context[@request_id_context_key],
42
+ operationName: query.operation_name,
43
+ gzippedOperationBody: Hubburu.gzip(query_signature.call(query)),
44
+ schemaHash: @schema_sha,
45
+ errors: result.to_h.fetch(:errors).map { |e| { message: e.message } },
46
+ environment: @environment,
47
+ start_time_nanos: nanos_now,
48
+ clientName: query.context[:client_name],
49
+ clientVersion: query.context[:client_version],
50
+ meta: {}
51
+ )
52
+ when "execute_query"
53
+ begin
54
+ result = yield
55
+ rescue StandardError => e
56
+ query = data.fetch(:query)
57
+ report = query.context.namespace(self.class)
58
+ begin
59
+ report[:errors].push(message: e.respond_to?(:message) ? "[#{e.class.name}] #{e.message}" : e.class.name,
60
+ details: e.backtrace.take(10).join('\n\n'))
61
+ rescue StandardError => e
62
+ warn "HUBBURU_FORMAT_ERROR #{e}"
63
+ end
64
+ send(report, query)
65
+ raise e
66
+ end
67
+ when "execute_query_lazy"
68
+ begin
69
+ result = yield
70
+ rescue StandardError => e
71
+ query = data.fetch(:query)
72
+ report = query.context.namespace(self.class)
73
+ begin
74
+ report[:errors].push(message: e.respond_to?(:message) ? "[#{e.class.name}] #{e.message}" : e.class.name,
75
+ details: e.backtrace.take(10).join('\n\n'))
76
+ rescue StandardError => e
77
+ warn "HUBBURU_FORMAT_ERROR #{e}"
78
+ end
79
+ send(report, query)
80
+ raise e
81
+ end
82
+
83
+ query = data.fetch(:query)
84
+ report = query.context.namespace(self.class)
85
+ if query.static_errors.present?
86
+ begin
87
+ query.static_errors.each do |static_error|
88
+ report[:errors].push(message: static_error.message,
89
+ details: static_error.respond_to?(:path) ? static_error.path : nil)
90
+ end
91
+ rescue StandardError => e
92
+ warn "HUBBURU_FORMAT_ERROR #{e}"
93
+ end
94
+ end
95
+ send(report, query)
96
+ else
97
+ result = yield
98
+ end
99
+
100
+ result
101
+ end
102
+
103
+ def send(report, query)
104
+ begin
105
+ return if @should_send && !@should_send.call(report)
106
+ rescue StandardError => e
107
+ warn "hubburu should_send lambda raised error #{e}"
108
+ end
109
+
110
+ post_processing_start = nanos_now
111
+
112
+ if report[:start_time_nanos]
113
+ report[:totalMs] = to_report_ms(nanos_now - report[:start_time_nanos])
114
+ report.delete(:start_time_nanos)
115
+ end
116
+ report[:createdAt] = Time.now.utc.iso8601
117
+ errors = report[:errors]
118
+ if errors.empty?
119
+ report.delete(:errors)
120
+ else
121
+ report[:errors] = Hubburu.gzip(errors.to_json)
122
+ end
123
+
124
+ errors_too_large = !(report[:errors] && report[:errors].bytesize > MAX_ERROR_BYTES).nil?
125
+
126
+ if errors_too_large
127
+ report[:errors] = Hubburu.gzip(errors.take(5).to_json)
128
+ report[:meta][:errorsTooLarge] = errors.size
129
+ end
130
+
131
+ report[:enums] = {}
132
+ context = query.context
133
+ schema = context.schema
134
+ begin
135
+ query.selected_operation.variables.each do |ast_variable|
136
+ variable_name = ast_variable.name
137
+ variable_type = schema.type_from_ast(ast_variable.type, context: context)
138
+ provided_value = query.provided_variables[variable_name]
139
+
140
+ case variable_type.kind.name
141
+ when "NON_NULL", "LIST", "INPUT_OBJECT"
142
+ trace_type_enums(variable_type, provided_value, report[:enums])
143
+ when "ENUM"
144
+ type_name = variable_type.to_type_signature
145
+
146
+ report[:enums][type_name] ||= []
147
+ report[:enums][type_name] |= [provided_value]
148
+ end
149
+ end
150
+ rescue StandardError => e
151
+ warn "HUBBURU_ENUM_ERROR #{e}"
152
+ end
153
+
154
+ report[:meta][:postProcessingTime] = to_report_ms(nanos_now - post_processing_start)
155
+
156
+ trace = report.to_json
157
+
158
+ Hubburu.send("/operation", trace, @headers) if @api_key
159
+ rescue StandardError => e
160
+ warn "HUBBURU_SEND_ERROR #{e}"
161
+ end
162
+
163
+ private
164
+
165
+ def trace_type_enums(type, provided_value, enums)
166
+ case type.kind.name
167
+ when "NON_NULL"
168
+ trace_type_enums(type.of_type, provided_value, enums)
169
+ when "LIST"
170
+ provided_value.each do |value|
171
+ trace_type_enums(type.of_type, value, enums)
172
+ end
173
+ when "INPUT_OBJECT"
174
+ type.arguments.each do |argument_name, argument_value|
175
+ next unless provided_value[argument_name]
176
+
177
+ trace_type_enums(argument_value.type, provided_value[argument_name], enums)
178
+ end
179
+ when "ENUM"
180
+ type_name = type.to_type_signature
181
+
182
+ enums[type_name] ||= []
183
+ enums[type_name] |= [provided_value]
184
+ end
185
+ end
186
+
187
+ def to_report_ms(nanos)
188
+ (nanos / 10_000) / 100.0
189
+ end
190
+
191
+ def nanos_now
192
+ Process.clock_gettime(Process::CLOCK_MONOTONIC, :nanosecond)
193
+ end
194
+
195
+ def sha256(data)
196
+ Digest::SHA256.hexdigest(data)
197
+ end
198
+ end
199
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Hubburu
4
+ VERSION = "0.1.0"
5
+ end
data/lib/hubburu.rb ADDED
@@ -0,0 +1,68 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "hubburu/tracer"
4
+ require_relative "hubburu/version"
5
+
6
+ module Hubburu
7
+ def self.use(schema, options = {})
8
+ @queue_method = options[:queue_method]
9
+ options.delete(:queue_method)
10
+
11
+ schema.tracer(Hubburu::Tracer.new(schema, **options))
12
+ end
13
+
14
+ def self.push_hubburu_schema(schema, api_key = Hubburu.api_key, environment = Hubburu.environment)
15
+ unless api_key
16
+ warn "HUBBURU_SEND_ERROR missing api_key"
17
+ return
18
+ end
19
+
20
+ Hubburu.send(
21
+ "/schema",
22
+ {
23
+ sdl: Hubburu.gzip(GraphQL::Schema::Printer.print_schema(schema)),
24
+ environment: environment
25
+ }.to_json,
26
+ {
27
+ "X-Api-Key" => api_key,
28
+ "Content-Type" => "application/json"
29
+ }
30
+ )
31
+ end
32
+
33
+ def self.api_key
34
+ @api_key ||= ENV["HUBBURU_API_KEY"]
35
+ end
36
+
37
+ def self.report_url
38
+ @report_url ||= ENV["HUBBURU_REPORT_URL"] || "https://report.hubburu.com"
39
+ end
40
+
41
+ def self.environment
42
+ @environment ||= ENV["HUBBURU_ENVIRONMENT"] || "default"
43
+ end
44
+
45
+ def self.gzip(data)
46
+ output = StringIO.new
47
+ gz = Zlib::GzipWriter.new(output)
48
+ gz.write(data)
49
+ gz.close
50
+ Base64.encode64(output.string)
51
+ end
52
+
53
+ def self.send(path, body, headers)
54
+ if @queue_method
55
+ @queue_method.call(
56
+ Hubburu.report_url + path,
57
+ body,
58
+ headers
59
+ )
60
+ else
61
+ Net::HTTP.post(
62
+ URI(Hubburu.report_url + path),
63
+ body,
64
+ headers
65
+ )
66
+ end
67
+ end
68
+ end
data/sig/hubburu.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Hubburu
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,57 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hubburu
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - hello@hubburu.com
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2022-06-26 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A tracer for integrating Hubburu with GraphQL Ruby
14
+ email:
15
+ - hello@hubburu.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".rubocop.yml"
21
+ - CHANGELOG.md
22
+ - CODE_OF_CONDUCT.md
23
+ - Gemfile
24
+ - Gemfile.lock
25
+ - LICENSE.txt
26
+ - README.md
27
+ - Rakefile
28
+ - lib/hubburu.rb
29
+ - lib/hubburu/tracer.rb
30
+ - lib/hubburu/version.rb
31
+ - sig/hubburu.rbs
32
+ homepage: https://www.hubburu.com/
33
+ licenses:
34
+ - MIT
35
+ metadata:
36
+ homepage_uri: https://www.hubburu.com/
37
+ source_code_uri: https://github.com/hubburu/ruby-plugin
38
+ post_install_message:
39
+ rdoc_options: []
40
+ require_paths:
41
+ - lib
42
+ required_ruby_version: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: 2.6.0
47
+ required_rubygems_version: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: '0'
52
+ requirements: []
53
+ rubygems_version: 3.0.3
54
+ signing_key:
55
+ specification_version: 4
56
+ summary: A tracer for integrating Hubburu with GraphQL Ruby
57
+ test_files: []