Files
openproject/modules/two_factor_authentication/openproject-two_factor_authentication.gemspec
T
dependabot[bot] 375e83e47b Bump the aws-gems group across 1 directory with 3 updates (#22636)
Bump the aws-gems group with 3 updates

Bumps the aws-gems group with 3 updates: [aws-sdk-core](https://github.com/aws/aws-sdk-ruby), [aws-sdk-s3](https://github.com/aws/aws-sdk-ruby) and [aws-sdk-sns](https://github.com/aws/aws-sdk-ruby).


Updates `aws-sdk-core` from 3.243.0 to 3.244.0
- [Release notes](https://github.com/aws/aws-sdk-ruby/releases)
- [Changelog](https://github.com/aws/aws-sdk-ruby/blob/version-3/gems/aws-sdk-core/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-ruby/commits)

Updates `aws-sdk-s3` from 1.216.0 to 1.217.0
- [Release notes](https://github.com/aws/aws-sdk-ruby/releases)
- [Changelog](https://github.com/aws/aws-sdk-ruby/blob/version-3/gems/aws-sdk-s3/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-ruby/commits)

Updates `aws-sdk-sns` from 1.112.0 to 1.113.0
- [Release notes](https://github.com/aws/aws-sdk-ruby/releases)
- [Changelog](https://github.com/aws/aws-sdk-ruby/blob/version-3/gems/aws-sdk-sns/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-ruby/commits)

---
updated-dependencies:
- dependency-name: aws-sdk-core
  dependency-version: 3.244.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: aws-gems
- dependency-name: aws-sdk-s3
  dependency-version: 1.217.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: aws-gems
- dependency-name: aws-sdk-sns
  dependency-version: 1.113.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: aws-gems
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-06 14:51:25 +01:00

22 lines
894 B
Ruby

# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = "openproject-two_factor_authentication"
s.version = "1.0.0"
s.authors = "OpenProject GmbH"
s.email = "info@openproject.com"
s.summary = "OpenProject Two-factor authentication"
s.description = "This OpenProject plugin authenticates your users using two-factor authentication by means of " \
"one-time password through the TOTP standard (Google Authenticator), WebAuthn or sent to the " \
"user's cell phone via SMS or voice call"
s.files = Dir["{app,config,db,lib}/**/*", "CHANGELOG.md", "README.rdoc"]
s.add_dependency "messagebird-rest", ">= 1.4.2", "< 5.1.0"
s.add_dependency "rotp", "~> 6.1"
s.add_dependency "webauthn", "~> 3.0"
s.add_dependency "aws-sdk-sns", ">= 1.101", "< 1.114"
s.metadata["rubygems_mfa_required"] = "true"
end