2021-04-18 14:34:55 +03:00
# frozen_string_literal: true
2020-11-29 15:17:02 +03:00
lib = File . expand_path '../lib' , __FILE__
2021-04-18 14:34:55 +03:00
$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'
2023-02-14 18:25:38 +03:00
spec . files = Dir [ '**/*' ] . reject do | f |
2023-02-14 18:34:52 +03:00
f . match %r{ ^((contrib|test|node_modules)/|Gemfile|Gemfile \ .lock|additionals \ .gemspec|package \ .json|yarn \ .lock) }
2023-02-14 18:25:38 +03:00
end
2020-11-29 15:17:02 +03:00
spec . require_paths = [ 'lib' ]
2024-08-27 10:30:58 +03:00
spec . required_ruby_version = '>= 3.1'
2020-11-29 15:17:02 +03:00
2024-07-11 10:00:34 +03:00
spec . add_dependency 'redmine_plugin_kit'
spec . add_dependency 'render_async'
spec . add_dependency 'rss'
spec . add_dependency 'slim-rails'
spec . add_dependency 'tanuki_emoji' , '~> 0.6'
2020-11-29 15:17:02 +03:00
end