Sha256: 5e1d5397c37012a60944845aee7bd857ef6c5735de6ac84fabe53f0ae194333f

Contents?: true

Size: 1.19 KB

Versions: 4

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

  s.add_runtime_dependency 'activesupport'
  s.add_runtime_dependency 'dogstatsd-ruby', '>= 4.2', '< 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'
  s.add_development_dependency 'sqlite3'
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
datadog-notifications-0.6.5 datadog-notifications.gemspec
datadog-notifications-0.6.4 datadog-notifications.gemspec
datadog-notifications-0.6.3 datadog-notifications.gemspec
datadog-notifications-0.6.2 datadog-notifications.gemspec