-
Notifications
You must be signed in to change notification settings - Fork 2
/
Rakefile
28 lines (25 loc) · 1.04 KB
/
Rakefile
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
$:.unshift('lib')
require 'rubygems'
require 'rake'
#####-------------------------------------------------------------------------------------------------------
task :default => :test
#####-------------------------------------------------------------------------------------------------------
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "zgomot"
gem.summary = %Q{zgomot is a simple DSL for writting MIDI music.}
gem.email = "troy.stribling@gmail.com"
gem.homepage = "http://github.com/troystribling/zgomot"
gem.authors = ["Troy Stribling"]
gem.license = 'MIT'
gem.files.include %w(lib/jeweler/templates/.gitignore VERSION)
gem.add_dependency('ffi', '~> 1.9')
gem.add_dependency('curses', '~> 1.0')
gem.add_dependency('rainbow', '~> 1.1')
gem.add_dependency('pry', '~> 0.9.12.2')
gem.add_dependency('fssm', '~> 0.2.10')
end
rescue LoadError
abort "jeweler is not available. In order to run test, you must: sudo gem install technicalpickles-jeweler --source=http://gems.github.com"
end