-
Notifications
You must be signed in to change notification settings - Fork 1
/
stellate.gemspec
30 lines (26 loc) · 1.06 KB
/
stellate.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# frozen_string_literal: true
require_relative 'lib/stellate'
Gem::Specification.new do |spec|
spec.name = 'stellate'
spec.version = Stellate::VERSION
spec.summary = 'Integrate Stellate with your GraphQL Ruby API'
spec.description = <<~DESC
Add Stellate Metrics Logging and Schema Syncing to your GraphQL Ruby API
with a few lines of code, click this link for specific set up instructions:
https://github.com/StellateHQ/stellate-graphql-ruby
DESC
spec.authors = ['Stellate']
spec.email = '[email protected]'
spec.files = ['lib/stellate.rb']
spec.homepage =
'https://rubygems.org/gems/stellate'
spec.license = 'MIT'
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/StellateHQ/stellate-graphql-ruby/issues',
# 'documentation_uri' => 'https://stellate.co/docs/integrations/graphql-ruby',
'homepage_uri' => spec.homepage,
'source_code_uri' => 'https://github.com/StellateHQ/stellate-graphql-ruby'
}
spec.add_dependency 'net-http', '~> 0.4.1'
spec.add_dependency 'uri', '~> 0.13.0'
end