-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathprocto.gemspec
More file actions
21 lines (17 loc) · 778 Bytes
/
procto.gemspec
File metadata and controls
21 lines (17 loc) · 778 Bytes
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 = `git ls-files`.split("\n")
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