cpee-frames.gemspec 1.0 KB

1234567891011121314151617181920212223242526
  1. Gem::Specification.new do |s|
  2. s.name = "cpee-frames"
  3. s.version = "1.0.0"
  4. s.platform = Gem::Platform::RUBY
  5. s.license = "GPL-3.0"
  6. s.summary = "Dashboard management service with UI and backend for the cpee.org family of workflow management tools"
  7. s.description = "Flexibly arrange and display user interface components in a grid from executable process models. Very useful if you want to build dashboards."
  8. s.files = Dir['{server/**/*,tools/**/*,lib/**/*}'] + %w(LICENSE Rakefile cpee-frames.gemspec README.md AUTHORS)
  9. s.require_path = 'lib'
  10. s.extra_rdoc_files = ['README.md']
  11. s.bindir = 'tools'
  12. s.executables = ['cpee-frames']
  13. s.required_ruby_version = '>=3.0'
  14. s.authors = ['Manuell Gall', 'Juergen Mangler']
  15. s.email = 'gall.manuel.89@gmail.com'
  16. s.homepage = 'https://github.com/ManuelGall/cpee-frames'
  17. s.add_runtime_dependency 'riddl', '~> 0.99'
  18. s.add_runtime_dependency 'json', '~> 2.1'
  19. end