Files
openproject/modules/auth_saml/openproject-auth_saml.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

18 lines
564 B
Ruby

# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = "openproject-auth_saml"
s.version = "1.0.0"
s.authors = "Cyril Rohr"
s.email = "cyril.rohr@gmail.com"
s.homepage = "https://github.com/finnlabs/openproject-auth_saml"
s.summary = "OmniAuth SAML / Single-Sign On"
s.description = "Adds the OmniAuth SAML provider to OpenProject"
s.license = "MIT"
s.files = Dir["{app,lib}/**/*"] + %w(README.md)
s.add_dependency "omniauth-saml", "~> 1.10.6"
s.metadata["rubygems_mfa_required"] = "true"
end