File: abstract_type.gemspec

package info (click to toggle)
ruby-abstract-type 0.0.7-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 172 kB
  • sloc: ruby: 205; makefile: 4
file content (20 lines) | stat: -rw-r--r-- 726 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# encoding: utf-8

require File.expand_path('../lib/abstract_type/version', __FILE__)

Gem::Specification.new do |gem|
  gem.name        = 'abstract_type'
  gem.version     = AbstractType::VERSION.dup
  gem.authors     = [ 'Dan Kubb' ]
  gem.email       = %w[ dan.kubb@gmail.com ]
  gem.description = 'Module to declare abstract classes and methods'
  gem.summary     = gem.description
  gem.homepage    = 'https://github.com/dkubb/abstract_type'
  gem.license     = 'MIT'

  gem.files            = `git ls-files`.split($/)
  gem.test_files       = `git ls-files -- spec/unit`.split($/)
  gem.extra_rdoc_files = %w[LICENSE README.md CONTRIBUTING.md TODO]

  gem.add_development_dependency('bundler', '~> 1.3', '>= 1.3.5')
end