additionals/additionals.gemspec

29 lines
1.1 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2020-11-29 15:17:02 +03:00
lib = File.expand_path '../lib', __FILE__
$LOAD_PATH.unshift lib unless $LOAD_PATH.include? lib
2020-11-29 15:17:02 +03:00
require 'additionals/version'
Gem::Specification.new do |spec|
spec.name = 'additionals'
spec.version = Additionals::VERSION
spec.authors = ['AlphaNodes']
spec.email = ['alex@alphanodes.com']
2021-11-16 18:29:00 +03:00
spec.metadata = { 'rubygems_mfa_required' => 'true' }
2020-11-29 15:17:02 +03:00
spec.summary = 'Redmine plugin for adding dashboard functionality, wiki macros and libraries for other Redmine plugins'
spec.description = 'Redmine plugin for adding dashboard functionality, wiki macros and libraries for other Redmine plugins'
spec.homepage = 'https://github.com/alphanodes/alphanodes'
spec.license = 'GPL-2.0'
2021-01-18 12:32:40 +03:00
spec.files = Dir['**/*'] - Dir['test/**/*'] - Dir['Gemfile', 'Gemfile.lock', 'README.rst']
2020-11-29 15:17:02 +03:00
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.6'
2020-11-29 15:17:02 +03:00
spec.add_runtime_dependency 'deface', '1.8.1'
2020-11-29 15:17:02 +03:00
spec.add_runtime_dependency 'gemoji', '~> 3.0.0'
spec.add_runtime_dependency 'render_async'
spec.add_runtime_dependency 'rss'
spec.add_runtime_dependency 'slim-rails'
end