Sha256: e1103c058615e6e42e8fa5cdd0c7eeb3f9dc7abce46c29465bd7fafe9fc5ef19
Contents?: true
Size: 1.49 KB
Versions: 9
Compression:
Stored size: 1.49 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'version' Gem::Specification.new do |spec| spec.name = 'ruby-mext' spec.version = Mext::VERSION spec.authors = ['Nicola Bernardini'] spec.email = ['nicb@sme-ccppd.org'] spec.summary = %q{ruby-mext: musical extensions for the Ruby language.} spec.description = %q{ruby-mext: musical extensions for the Ruby language.} spec.homepage = 'https://github.com/nicb/ruby-mext' # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. if spec.respond_to?(:metadata) spec.metadata['allowed_push_host'] = 'https://rubygems.org' else raise "RubyGems 2.0 or newer is required to protect against " \ "public gem pushes." end 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_dependency 'wavefile' spec.add_dependency 'cmath' spec.add_development_dependency 'bundler' spec.add_development_dependency 'rake' spec.add_development_dependency 'rspec' spec.add_development_dependency 'rdoc' spec.add_development_dependency 'byebug' spec.add_development_dependency 'gruff' end
Version data entries
9 entries across 9 versions & 1 rubygems