mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
01328ce16b
Bumps [rubyzip](https://github.com/rubyzip/rubyzip) from 2.3.2 to 2.4.1. - [Release notes](https://github.com/rubyzip/rubyzip/releases) - [Changelog](https://github.com/rubyzip/rubyzip/blob/main/Changelog.md) - [Commits](https://github.com/rubyzip/rubyzip/compare/v2.3.2...v2.4.1) --- updated-dependencies: - dependency-name: rubyzip dependency-version: 2.4.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
17 lines
640 B
Ruby
17 lines
640 B
Ruby
# Describe your gem and declare its dependencies:
|
|
Gem::Specification.new do |s|
|
|
s.name = "openproject-bim"
|
|
s.version = "1.0.0"
|
|
s.authors = "OpenProject GmbH"
|
|
s.email = "info@openproject.com"
|
|
s.homepage = "https://www.openproject.org/docs/bim-guide/"
|
|
s.summary = "OpenProject BIM and BCF functionality"
|
|
s.description = "This OpenProject plugin introduces BIM and BCF functionality"
|
|
|
|
s.files = Dir["{app,config,db,lib}/**/*", "CHANGELOG.md", "README.rdoc"]
|
|
|
|
s.add_dependency "activerecord-import"
|
|
s.add_dependency "rubyzip", ">= 2.3", "< 2.5"
|
|
s.metadata["rubygems_mfa_required"] = "true"
|
|
end
|