-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiffdash.gemspec
More file actions
32 lines (26 loc) · 1.2 KB
/
diffdash.gemspec
File metadata and controls
32 lines (26 loc) · 1.2 KB
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
31
32
# frozen_string_literal: true
require_relative 'lib/diffdash/version'
Gem::Specification.new do |spec|
spec.name = 'diffdash'
spec.version = Diffdash::VERSION
spec.authors = ['Ross Buddie']
spec.email = ['you@example.com']
spec.summary = 'PR-scoped observability signal extractor and Grafana dashboard generator'
spec.description = 'Statically analyzes Ruby source code in a Pull Request and generates ' \
'a Grafana dashboard JSON containing panels relevant to observability signals.'
spec.homepage = 'https://github.com/rossme/diffdash'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.0.0'
spec.files = Dir.glob('{bin,lib}/**/*') + %w[README.md]
spec.bindir = 'bin'
spec.executables = ['diffdash']
spec.require_paths = ['lib']
spec.add_dependency 'ast', '~> 2.4'
spec.add_dependency 'dotenv', '>= 2.8'
spec.add_dependency 'faraday', '>= 2.0'
spec.add_dependency 'faraday-multipart', '>= 1.0'
spec.add_dependency 'parser', '~> 3.2'
spec.add_development_dependency 'rspec', '~> 3.12'
spec.add_development_dependency 'rubocop', '~> 1.50'
spec.add_development_dependency 'webmock', '~> 3.18'
end