-
Notifications
You must be signed in to change notification settings - Fork 0
/
ekylibre-ednotif.gemspec
32 lines (25 loc) · 1.21 KB
/
ekylibre-ednotif.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
# frozen_string_literal: true
require_relative 'lib/ekylibre/ednotif/version'
Gem::Specification.new do |spec|
spec.name = 'ekylibre-ednotif'
spec.version = Ekylibre::Ednotif::VERSION
spec.authors = ['Ekylibre developers']
spec.email = ['[email protected]']
spec.homepage = 'https://www.ekylibre.com'
spec.required_ruby_version = '>= 2.6.0'
spec.summary = 'EdNotif integration'
spec.license = 'AGPL-3.0-only'
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
if spec.respond_to?(:metadata)
spec.metadata['allowed_push_host'] = 'https://gems.ekylibre.dev'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://www.gitlab.com/ekylibre/ekylibre_plugin_system'
else
raise StandardError.new('RubyGems 2.0 or newer is required to protect against public gem pushes.')
end
spec.files = Dir.glob(%w[{app,bin,config,lib}/**/* *.gemspec Gemfile Rakefile *.rdoc])
spec.add_development_dependency 'bundler', '>= 1.17'
spec.add_development_dependency 'minitest', '~> 5.14'
spec.add_development_dependency 'rake', '~> 13.0'
end