Sha256: c6a6ccff72bd6e28e6efadf903f48caa50a8faff595a7021a7679ff44cf65c0f
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'vissen/input/version' Gem::Specification.new do |spec| spec.name = 'vissen-input' spec.version = Vissen::Input::VERSION spec.authors = ['Sebastian Lindberg'] spec.email = ['seb.lindberg@gmail.com'] spec.summary = 'The input side of the vissen system.' spec.description = 'This gem implements the input messages and message ' \ 'matching engine used in the vissen project.' spec.homepage = 'https://github.com/midi-visualizer/vissen-input' 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.add_development_dependency 'bundler', '~> 1.16' spec.add_development_dependency 'minitest', '~> 5.0' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rubocop', '~> 0.52' spec.add_development_dependency 'simplecov', '~> 0.16' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vissen-input-0.2.2 | vissen-input.gemspec |