File: ddplugin.gemspec

package info (click to toggle)
ruby-ddplugin 1.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 132 kB
  • sloc: ruby: 154; makefile: 3
file content (25 lines) | stat: -rw-r--r-- 748 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

require_relative 'lib/ddplugin/version'

Gem::Specification.new do |s|
  s.name        = 'ddplugin'
  s.version     = DDPlugin::VERSION
  s.homepage    = 'http://github.com/ddfreyne/ddplugin/'
  s.summary     = 'Plugins for Ruby apps'
  s.description = 'Provides plugin management for Ruby projects'

  s.author  = 'Denis Defreyne'
  s.email   = 'denis.defreyne@stoneship.org'
  s.license = 'MIT'

  s.required_ruby_version = '>= 2.5'

  s.files              = Dir['[A-Z]*'] +
                         Dir['{lib,test}/**/*'] +
                         ['ddplugin.gemspec']
  s.require_paths      = ['lib']

  s.rdoc_options     = ['--main', 'README.md']
  s.extra_rdoc_files = ['LICENSE', 'README.md', 'NEWS.md']
end