Sha256: a33e7b5195ca9502d2b51e66d78a2fbe7723a5aa53f34cbf536c79a71e3768e3

Contents?: true

Size: 587 Bytes

Versions: 30

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

30 entries across 30 versions & 1 rubygems

Version Path
polyphony-0.62 Rakefile
polyphony-0.61 Rakefile
polyphony-0.60 Rakefile
polyphony-0.59.1 Rakefile
polyphony-0.59 Rakefile
polyphony-0.58 Rakefile
polyphony-0.57.0 Rakefile
polyphony-0.56.0 Rakefile
polyphony-0.55.0 Rakefile
polyphony-0.54.0 Rakefile
polyphony-0.53.2 Rakefile
polyphony-0.53.1 Rakefile
polyphony-0.53.0 Rakefile
polyphony-0.52.0 Rakefile
polyphony-0.51.0 Rakefile
polyphony-0.50.1 Rakefile
polyphony-0.50.0 Rakefile
polyphony-0.49.2 Rakefile
polyphony-0.49.1 Rakefile
polyphony-0.49.0 Rakefile