Files
openproject/modules/documents/openproject-documents.gemspec
Jan Sandbrink 4bf16e5215 Freeze string literals in two more modules
Diff was achieved by running

    rubocop -A --only Style/FrozenStringLiteralComment,Layout/EmptyLineAfterMagicComment,Style/RedundantFreeze

for the module folders of the affected modules.
This change is part of the effort to slowly roll out frozen
string literals across the entire application.
2025-06-30 09:51:24 +02:00

15 lines
473 B
Ruby

# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = "openproject-documents"
s.version = "1.0.0"
s.authors = "OpenProject GmbH"
s.email = "info@openproject.com"
s.summary = "OpenProject Documents"
s.description = "An OpenProject plugin to allow creation of documents in projects"
s.license = "GPLv3"
s.files = Dir["{app,config,db,lib,doc}/**/*", "README.md"]
s.metadata["rubygems_mfa_required"] = "true"
end