mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
22 lines
755 B
Ruby
22 lines
755 B
Ruby
# encoding: UTF-8
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = "openproject-reporting"
|
|
s.version = '1.0.0'
|
|
s.authors = "OpenProject GmbH"
|
|
s.email = "info@openproject.com"
|
|
s.homepage = "https://community.openproject.org/projects/plugin-reporting"
|
|
s.summary = "OpenProject Reporting"
|
|
s.description = "This plugin allows creating custom cost reports with filtering and grouping created by the OpenProject Costs plugin"
|
|
|
|
s.files = Dir["{app,config,db,lib,doc}/**/*", "README.md"]
|
|
s.test_files = Dir["spec/**/*"]
|
|
|
|
s.add_dependency "reporting_engine"
|
|
s.add_dependency "openproject-costs"
|
|
|
|
s.add_dependency 'jquery-tablesorter', '~> 1.27.0'
|
|
|
|
s.add_development_dependency "factory_girl_rails", "~> 4.0"
|
|
end
|