Sha256: 47513bcca7a79653d07234cd7237f4b95b1fc499a710dd93227230825f54fac0
Contents?: true
Size: 564 Bytes
Versions: 5
Compression:
Stored size: 564 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", "**/*.bundle", "**/*.jar", "pkg", "tmp"
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
polyphony-0.45.5 | Rakefile |
polyphony-0.45.4 | Rakefile |
polyphony-0.45.2 | Rakefile |
polyphony-0.45.1 | Rakefile |
polyphony-0.45.0 | Rakefile |