Sha256: b540607fea076d7e28ff2a6106ba23a9729c80a7bc1769fea2da8b879a8d1e18

Contents?: true

Size: 563 Bytes

Versions: 13

Compression:

Stored size: 563 Bytes

Contents

# frozen_string_literal: true

require "bundler/gem_tasks"
require "rake/clean"

require "rake/extensiontask"
Rake::ExtensionTask.new("polyphony_ext") do |ext|
  ext.ext_dir = "ext/polyphony"
end

task :recompile => [:clean, :compile]

task :default => [:compile, :test]
task :test do
  exec 'ruby test/run.rb'
end

task :stress_test do
  exec 'ruby test/stress.rb'
end

task :docs do
  exec 'RUBYOPT=-W0 jekyll serve -s docs -H ec2-35-158-110-38.eu-central-1.compute.amazonaws.com'
end

CLEAN.include "**/*.o", "**/*.so", "**/*.bundle", "**/*.jar", "pkg", "tmp"

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
polyphony-0.44.0 Rakefile
polyphony-0.43.11 Rakefile
polyphony-0.43.10 Rakefile
polyphony-0.43.9 Rakefile
polyphony-0.43.8 Rakefile
polyphony-0.43.6 Rakefile
polyphony-0.43.5 Rakefile
polyphony-0.43.4 Rakefile
polyphony-0.43.3 Rakefile
polyphony-0.43.2 Rakefile
polyphony-0.43.1 Rakefile
polyphony-0.43 Rakefile
polyphony-0.42 Rakefile