OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/openproject-documents.gemspec

25 lines
865 B

11 years ago
# encoding: UTF-8
$:.push File.expand_path("../lib", __FILE__)
require 'open_project/documents/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "openproject-documents"
s.version = OpenProject::Documents::VERSION
s.authors = "OpenProject GmbH"
s.email = "info@openproject.com"
s.homepage = "https://community.openproject.org/projects/documents"
s.summary = "OpenProject Documents"
s.description = "An OpenProject plugin to allow creation of documents in projects"
s.license = "GPLv3"
11 years ago
s.files = Dir["{app,config,db,lib,doc}/**/*", "README.md"]
s.test_files = Dir["spec/**/*"]
11 years ago
s.add_dependency 'rails', '~> 4.2.4'
11 years ago
s.add_development_dependency 'rspec-rails'
s.add_development_dependency 'cucumber-rails'
s.add_development_dependency 'database_cleaner'
end