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/lib/generators/open_project/plugin/templates/%full_name%.gemspec.tt

18 lines
656 B

# encoding: UTF-8
$:.push File.expand_path("../lib", __FILE__)
$:.push File.expand_path("../../lib", __dir__)
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "<%= full_name %>"
s.authors = "OpenProject GmbH"
s.email = "info@openproject.org"
s.homepage = "https://community.openproject.org/projects/<%= plugin_name.gsub('_','-') %>" # TODO check this URL
s.summary = 'OpenProject <%= plugin_name.gsub('_', ' ').titleize %>'
s.description = "FIXME"
s.license = "FIXME" # e.g. "MIT" or "GPLv3"
s.files = Dir["{app,config,db,lib}/**/*"] + %w(CHANGELOG.md README.md)
end