Sha256: e0833bb026acd7968e1d4fae87bba206784d178d46a39f930841246303c4d43e

Contents?: true

Size: 587 Bytes

Versions: 23

Compression:

Stored size: 587 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-18-156-117-172.eu-central-1.compute.amazonaws.com'
end

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

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
polyphony-0.83 Rakefile
polyphony-0.82 Rakefile
polyphony-0.81.1 Rakefile
polyphony-0.81 Rakefile
polyphony-0.80 Rakefile
polyphony-0.79 Rakefile
polyphony-0.78 Rakefile
polyphony-0.77 Rakefile
polyphony-0.76 Rakefile
polyphony-0.75 Rakefile
polyphony-0.74 Rakefile
polyphony-0.73.1 Rakefile
polyphony-0.73 Rakefile
polyphony-0.72 Rakefile
polyphony-0.71 Rakefile
polyphony-0.70 Rakefile
polyphony-0.69 Rakefile
polyphony-0.68 Rakefile
polyphony-0.67 Rakefile
polyphony-0.66 Rakefile