mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
4bf16e5215
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.
18 lines
564 B
Ruby
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
|