File: procto.gemspec

package info (click to toggle)
ruby-procto 0.0.3-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 184 kB
  • sloc: ruby: 110; makefile: 4
file content (21 lines) | stat: -rw-r--r-- 818 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
# encoding: utf-8

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

Gem::Specification.new do |gem|
  gem.name        = "procto"
  gem.version     = Procto::VERSION.dup
  gem.authors     = [ 'Martin Gamsjaeger (snusnu)' ]
  gem.email       = [ 'gamsnjaga@gmail.com' ]
  gem.description = 'Turns your object into a method object'
  gem.summary     = 'Defines Foo.call(*args) which invokes Foo.new(*args).bar '
  gem.homepage    = 'https://github.com/snusnu/procto'

  gem.require_paths    = [ 'lib' ]
  gem.files = files = (Dir["**/*"] - Dir["debian/**/*"]).select { |f| !File.directory?(f) }
  gem.test_files       = `git ls-files -- {spec}/*`.split("\n")
  gem.extra_rdoc_files = %w[LICENSE README.md CONTRIBUTING.md]
  gem.license          = 'MIT'

  gem.add_development_dependency 'bundler', '~> 1'
end