-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathyabeda-cloudwatch.gemspec
35 lines (27 loc) · 1.21 KB
/
yabeda-cloudwatch.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
31
32
33
34
35
# frozen_string_literal: true
require_relative 'lib/yabeda/cloudwatch/version'
Gem::Specification.new do |spec|
spec.name = 'yabeda-cloudwatch'
spec.version = Yabeda::Cloudwatch::VERSION
spec.authors = ['Roberto Scinocca']
spec.email = ['[email protected]']
spec.summary = 'Yabeda AWS Cloudwatch adapter'
spec.homepage = 'https://github.com/retsef/yabeda-prometheus'
spec.license = 'MIT'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/retsef/yabeda-cloudwatch'
spec.metadata['changelog_uri'] = 'https://github.com/retsef/yabeda-cloudwatch/blob/master/CHANGELOG.md'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.3'
spec.add_dependency 'aws-sdk-cloudwatch'
spec.add_dependency 'yabeda', '~> 0.10'
spec.add_dependency 'activesupport'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.0'
end