mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
19 lines
612 B
Ruby
19 lines
612 B
Ruby
# encoding: UTF-8
|
|
|
|
# Describe your gem and declare its dependencies:
|
|
Gem::Specification.new do |s|
|
|
s.name = "openproject-bcf"
|
|
s.version = "1.0.0"
|
|
s.authors = "OpenProject GmbH"
|
|
s.email = "info@openproject.com"
|
|
s.homepage = "https://community.openproject.org/"
|
|
s.summary = "OpenProject BCF import/export"
|
|
s.description = "This OpenProject plugin introduces BCF functionality"
|
|
|
|
s.files = Dir["{app,config,db,lib}/**/*", "CHANGELOG.md", "README.rdoc"]
|
|
s.test_files = Dir["spec/**/*"]
|
|
|
|
s.add_dependency 'activerecord-import'
|
|
s.add_dependency 'rubyzip', '~> 1.2'
|
|
end
|