OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/modules/global_roles/openproject-global_roles.ge...

25 lines
1.1 KiB

$LOAD_PATH.push File.expand_path('../lib', __FILE__)
$LOAD_PATH.push File.expand_path("../../lib", __dir__)
# Maintain your gem's version:
require 'open_project/global_roles/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'openproject-global_roles'
s.version = OpenProject::GlobalRoles::VERSION
s.authors = 'OpenProject GmbH'
s.email = 'info@openproject.com'
s.homepage = 'https://community.openproject.org/projects/plugin-global-roles'
s.summary = 'OpenProject Global Roles'
s.description = "Adds global roles not bound to a project. A user can have a global role allowing to
perform actions outside of the scope of a specific project normally only allowed for administrators.
By assigning the permission to create projects to a global role, non-administrators can create top-level projects."
s.license = 'GPLv3'
s.files = Dir['{app,config,db,lib,doc}/**/*', 'README.md']
s.test_files = Dir['spec/**/*']
s.add_development_dependency 'factory_girl_rails', '~> 4.0'
end