Files
openproject/modules/two_factor_authentication/openproject-two_factor_authentication.gemspec
T
dependabot[bot] 4d1dcccd00 Bump the aws-gems group with 3 updates (#21724)
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.241.3 to 3.241.4
- [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.211.0 to 1.212.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.111.0 to 1.112.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.241.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: aws-gems
- dependency-name: aws-sdk-s3
  dependency-version: 1.212.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: aws-gems
- dependency-name: aws-sdk-sns
  dependency-version: 1.112.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-02-01 01:44:46 -03: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.113"
s.metadata["rubygems_mfa_required"] = "true"
end