Sha256: 72b3afe827778b1382d408596a179f51248802235c11c058af8d87425860c7e1

Contents?: true

Size: 497 Bytes

Versions: 3

Compression:

Stored size: 497 Bytes

Contents

# frozen_string_literal: true

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

require "rake/extensiontask"
Rake::ExtensionTask.new("gyro_ext") do |ext|
  ext.ext_dir = "ext/gyro"
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'
end

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
polyphony-0.40 Rakefile
polyphony-0.39 Rakefile
polyphony-0.38 Rakefile