$:.push File.expand_path(“../lib”, __FILE__)

require ‘open_project/<%= plugin_name %>/version’ # Describe your gem and declare its dependencies: Gem::Specification.new do |s|

s.name        = "<%= full_name %>"
s.version     = OpenProject::<%= plugin_name.camelcase %>::VERSION
s.authors     = "Finn GmbH"
s.email       = "info@finn.de"
s.homepage    = "https://www.openproject.org/projects/<%= plugin_name.gsub('_','-') %>"  # TODO check this URL
s.summary     = 'OpenProject <%= plugin_name.gsub('_', ' ').titleize %>'
s.description = FIXME
s.license     = FIXME # e.g. "MIT" or "GPLv3"

s.files = Dir["{app,config,db,lib}/**/*"] + %w(CHANGELOG.md README.md)

s.add_dependency "rails", "~> 3.2.14"

end