Skip to content
Snippets Groups Projects
foreman_notification_send.gemspec 909 B
Newer Older
  • Learn to ignore specific revisions
  • # frozen_string_literal: true
    
    
    Alexander Olofsson's avatar
    Alexander Olofsson committed
    require File.join File.expand_path('lib', __dir__), 'foreman_notification_send/version'
    
    
    Alexander Olofsson's avatar
    Alexander Olofsson committed
    Gem::Specification.new do |spec|
      spec.name        = 'foreman_notification_send'
      spec.version     = ForemanNotificationSend::VERSION
      spec.authors     = ['Alexander Olofsson']
      spec.email       = ['alexander.olofsson@liu.se']
    
    Alexander Olofsson's avatar
    Alexander Olofsson committed
    
    
    Alexander Olofsson's avatar
    Alexander Olofsson committed
      spec.homepage    = 'https://github.com/ananace/foreman_notification_send'
      spec.summary     = 'Send Foreman notifications to external systems'
      spec.description = spec.summary
      spec.license     = 'GPL-3.0'
    
    Alexander Olofsson's avatar
    Alexander Olofsson committed
      spec.files       = Dir['{app,config,db,lib}/**/*.{rake,rb}'] + %w[LICENSE.txt README.md]
    
    Alexander Olofsson's avatar
    Alexander Olofsson committed
    
    
    Alexander Olofsson's avatar
    Alexander Olofsson committed
      spec.add_dependency 'matrix_sdk', '~> 2.6'
    
    Alexander Olofsson's avatar
    Alexander Olofsson committed
      spec.add_development_dependency 'rubocop'
      spec.add_development_dependency 'rubocop-minitest'
      spec.add_development_dependency 'rubocop-performance'
      spec.add_development_dependency 'rubocop-rails'
    
    Alexander Olofsson's avatar
    Alexander Olofsson committed
    end