additionals/additionals.gemspec

29 lines
1.2 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
2021-11-23 21:16:49 +03:00
require 'additionals/plugin_version'
2020-11-29 15:17:02 +03:00
Gem::Specification.new do |spec|
spec.name = 'additionals'
2021-11-23 21:16:49 +03:00
spec.version = Additionals::PluginVersion::VERSION
2020-11-29 15:17:02 +03:00
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.7'
2020-11-29 15:17:02 +03:00
spec.add_runtime_dependency 'redmine_plugin_kit'
2020-11-29 15:17:02 +03:00
spec.add_runtime_dependency 'render_async'
spec.add_runtime_dependency 'rss'
spec.add_runtime_dependency 'slim-rails'
2022-04-10 14:45:24 +03:00
spec.add_runtime_dependency 'tanuki_emoji', '~> 0.6'
2020-11-29 15:17:02 +03:00
end