forked from cheerfulstoic/music
-
Notifications
You must be signed in to change notification settings - Fork 0
/
music.gemspec
29 lines (26 loc) · 1.12 KB
/
music.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- 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 = ["[email protected]"]
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