Sha256: 08e9138903f2668bf48d8570ac33bd146f2b88f849f4734daf24042ded356c8a

Contents?: true

Size: 1.12 KB

Versions: 1

Compression:

Stored size: 1.12 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "music/version"

Gem::Specification.new do |s|
  # Basic Info
  s.name          = "music"
  s.version       = Music::VERSION
  s.platform      = Gem::Platform::RUBY
  s.authors       = ["Brian Underwood"]
  s.email         = ["ml+musicgem@semi-sentient.com"]
  s.homepage      = "http://github.com/cheerfulstoic/music"
  s.summary       = %q{Library for performing calculations on musical elements}
  s.description   = %q{Library for classifying notes and chords and performing calculations on them.  See README.md}
  s.license       = %q{MIT}

  # Files
  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {spec,factories}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  # Dependencies
  s.add_dependency              "activemodel", "~> 3.2"
  s.add_development_dependency  "rake", "~> 0.9"
  s.add_development_dependency  "bundler", "~> 1.1.3"
  s.add_development_dependency  "rspec", '~> 2'
  s.add_development_dependency  "activemodel", '~> 3.2.0'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
music-0.6.2 music.gemspec