Sha256: 15e9d0cd06bf2ad5dad293ae2f1e1b143bb5009de241fa67b80d0ba77261132c

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.3'

  s.add_runtime_dependency('activesupport')
  s.add_runtime_dependency('dogstatsd-ruby', '~> 4.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')
  s.add_development_dependency('sqlite3')
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
datadog-notifications-0.6.0 datadog-notifications.gemspec