-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRakefile
More file actions
63 lines (53 loc) · 1.96 KB
/
Copy pathRakefile
File metadata and controls
63 lines (53 loc) · 1.96 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# encoding: utf-8
require 'rubygems'
require 'bundler'
begin
Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
$stderr.puts e.message
$stderr.puts "Run `bundle install` to install missing gems"
exit e.status_code
end
require 'rake'
require 'jeweler'
Jeweler::Tasks.new do |gem|
# gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
gem.name = "sms-tools-ruby"
gem.homepage = "http://github.com/nicb/sms-tools-ruby"
gem.license = "GNU GPL 2.0"
gem.summary = %Q{A version of the sms-tools (https://github.com/MTG/sms-tools) (re-written in ruby)}
gem.description = %Q{The original package is a sound analysis/synthesis tools for music applications written in python (with a bit of C). This package is an attempt to write a ruby gem that mimicks closely the behaviour of the original python package, though respecting the classical ruby 'convention over configuration' paradigm.}
gem.email = "n.bernardini@conservatoriosantacecilia.it"
gem.authors = ["Nicola Bernardini, Anna Terzaroli, Giuseppe Silvi"]
# dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new
require 'rake/testtask'
Rake::TestTask.new(:test => :compile) do |test|
test.libs << 'lib' << 'test'
test.pattern = 'test/**/test_*.rb'
test.verbose = true
end
desc "Code coverage detail"
task :simplecov do
ENV['COVERAGE'] = "true"
Rake::Task['test'].execute
end
task :default => :test
require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
version = File.exist?('VERSION') ? File.read('VERSION') : ""
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "sms-tools-ruby #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
EXT_DIR = File.expand_path(File.join('..', 'ext', 'util_functions'), __FILE__)
desc 'compile extensions'
task :compile do
Dir.chdir(EXT_DIR) { system('make')}
end
desc 'clean compiled extensions'
task 'compile:clean' do
Dir.chdir(EXT_DIR) { system('make clean')}
end