-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathredmine_plugin_kit.gemspec
More file actions
28 lines (22 loc) · 1004 Bytes
/
redmine_plugin_kit.gemspec
File metadata and controls
28 lines (22 loc) · 1004 Bytes
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
# frozen_string_literal: true
require_relative 'lib/redmine_plugin_kit/version'
lib = File.expand_path '../lib', __FILE__
$LOAD_PATH.unshift lib unless $LOAD_PATH.include? lib
Gem::Specification.new do |spec|
spec.name = 'redmine_plugin_kit'
spec.version = RedminePluginKit::VERSION
spec.authors = ['AlphaNodes']
spec.email = ['alex@alphanodes.com']
spec.metadata = { 'rubygems_mfa_required' => 'true' }
spec.summary = 'Redmine plugin kit'
spec.description = 'Redmine plugin kit as base of Redmine plugins'
spec.homepage = 'https://github.com/alphanodes/redmine_plugin_kit'
spec.license = 'GPL-2.0'
spec.files = Dir['**/*'].reject do |f|
f.match %r{^((doc|test|node_modules)/|Rakefile|Gemfile|Gemfile\.lock|redmine_plugin_kit\.gemspec|package\.json|yarn\.lock)}
end
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.7'
spec.add_dependency 'deface', '1.9.0'
spec.add_dependency 'rails'
end