Sha256: 019550b14d9a66eea613d67d3b4bd8d30246e40e2c4c1af3bf75a145e94ecd06
Contents?: true
Size: 997 Bytes
Versions: 5
Compression:
Stored size: 997 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'benchmark_driver/version' Gem::Specification.new do |spec| spec.name = 'benchmark_driver' spec.version = BenchmarkDriver::VERSION spec.authors = ['Takashi Kokubun'] spec.email = ['takashikkbn@gmail.com'] spec.summary = %q{Benchmark driver for different Ruby executables} spec.description = %q{Benchmark driver for different Ruby executables} spec.homepage = 'https://github.com/k0kubun/benchmark_driver' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.required_ruby_version = '>= 2.3.0' spec.add_development_dependency 'bundler' spec.add_development_dependency 'rake' end
Version data entries
5 entries across 5 versions & 1 rubygems