Sha256: d140a2c6824f80b4c3051bcaaf108658a0127387ccad8934066ed7cd0702aef7
Contents?: true
Size: 1.34 KB
Versions: 18
Compression:
Stored size: 1.34 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path('../lib/music-transcription/version', __FILE__) Gem::Specification.new do |gem| gem.name = "music-transcription" gem.version = Music::Transcription::VERSION gem.summary = %q{Classes for representing music notational features like pitch, note, loudness, tempo, etc.} gem.description = <<DESCRIPTION The goal of music-transcription is the abstract representation of standard musical features such as pitch, note, loudness, tempo, etc. Establishing a common representation enables composition and performance. DESCRIPTION gem.license = "MIT" gem.authors = ["James Tunnell"] gem.email = "jamestunnell@gmail.com" gem.homepage = "https://github.com/jamestunnell/music-transcription" gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ['lib'] gem.add_development_dependency 'bundler', '~> 1.5' gem.add_development_dependency 'rubygems-bundler', '~> 1.4' gem.add_development_dependency 'rake', '~> 10.1' gem.add_development_dependency 'rspec', '~> 2.14' gem.add_development_dependency 'yard', '~> 0.8' gem.add_development_dependency 'pry' gem.add_development_dependency 'pry-nav' end
Version data entries
18 entries across 18 versions & 1 rubygems