Sha256: f317eef884e2e101abea7bd7336d97dad38201d734a50f79a53663f12548fc1c

Contents?: true

Size: 1.19 KB

Versions: 1

Compression:

Stored size: 1.19 KB

Contents

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'datadog/notifications/version'

Gem::Specification.new do |s|
  s.name          = 'datadog-notifications'
  s.version       = Datadog::Notifications::VERSION.dup
  s.authors       = ['Dimitrij Denissenko']
  s.email         = ['dimitrij@blacksquaremedia.com']
  s.description   = 'Datadog instrumentation for ActiveSupport::Notifications'
  s.summary       = 'Generic ActiveSupport::Notifications Datadog handler'
  s.homepage      = 'https://github.com/bsm/datadog-notifications'

  s.files         = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
  s.test_files    = s.files.grep(%r{^(spec)/})
  s.require_paths = ['lib']
  s.required_ruby_version = '>= 2.6'

  s.add_runtime_dependency 'activesupport'
  s.add_runtime_dependency 'dogstatsd-ruby', '>= 4.8', '< 5.0'

  s.add_development_dependency 'activerecord'
  s.add_development_dependency 'bundler'
  s.add_development_dependency 'grape', '>= 1.0.2'
  s.add_development_dependency 'rack-test'
  s.add_development_dependency 'rake'
  s.add_development_dependency 'rspec'
  s.add_development_dependency 'rubocop-bsm'
  s.add_development_dependency 'sqlite3'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
datadog-notifications-0.6.6 datadog-notifications.gemspec