File: bindex.gemspec

package info (click to toggle)
ruby-bindex 0.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 184 kB
  • sloc: java: 193; ruby: 175; ansic: 62; makefile: 3
file content (27 lines) | stat: -rw-r--r-- 994 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
26
27
$LOAD_PATH << File.expand_path('../lib', __FILE__)

require 'bindex/version'

Gem::Specification.new do |spec|
  spec.name          = "bindex"
  spec.version       = Bindex::VERSION
  spec.authors       = ["Genadi Samokovarov"]
  spec.email         = ["gsamokovarov@gmail.com"]
  spec.extensions    = ["ext/bindex/extconf.rb"]
  spec.summary       = "Bindings for your Ruby exceptions"
  spec.homepage      = "https://github.com/gsamokovarov/bindex"
  spec.license       = "MIT"

  spec.required_ruby_version = ">= 2.0.0"

  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]
  spec.extensions    = ["ext/bindex/extconf.rb"]

  spec.add_development_dependency "minitest", "~> 5.4"
  spec.add_development_dependency "bundler"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "rake-compiler"
end