From 757b8570690e15b80082915b496da91833e437d7 Mon Sep 17 00:00:00 2001 From: Alex Coles Date: Mon, 14 Jul 2014 18:11:23 +0200 Subject: [PATCH] Remove openproject-plugins.gemspec Signed-off-by: Alex Coles --- openproject-plugins.gemspec | 38 ------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 openproject-plugins.gemspec diff --git a/openproject-plugins.gemspec b/openproject-plugins.gemspec deleted file mode 100644 index 206571e813..0000000000 --- a/openproject-plugins.gemspec +++ /dev/null @@ -1,38 +0,0 @@ -# encoding: UTF-8 -# -- copyright -# OpenProject is a project management system. -# -# Copyright (C) 2012-2013 the OpenProject Foundation (OPF) -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License version 3. -# -# See doc/COPYRIGHT.md for more details. -# -# ++ - -$:.push File.expand_path("../lib", __FILE__) - -require 'open_project/plugins/version' -Gem::Specification.new do |s| - s.name = "openproject-plugins" - s.version = OpenProject::Plugins::VERSION - s.authors = "Finn GmbH" - s.email = "info@finn.de" - s.homepage = "https://www.openproject.org/projects/plugin-plugins" - s.summary = "OpenProject Plugins" - s.description = <<-STR - This plugin aims to make writing plugins easier. It provides a generator for creating a - basic plugin structure and a module that simplifies setting up the plugin Rails engine. - Thus, it is also a dependency for many openproject plugins. - STR - s.license = "GPLv3" - - s.files = Dir["{lib, doc}/**/*"] + %w(README.md) - - s.add_dependency "rails", "~> 3.2.9" - - s.add_development_dependency 'rspec-rails' - s.add_development_dependency 'cucumber-rails' - s.add_development_dependency 'database_cleaner' -end