Sha256: c3325a224dc5575d0d26774e4bf0c06e1421c360d9229d3457cc22057895c105

Contents?: true

Size: 400 Bytes

Versions: 13

Compression:

Stored size: 400 Bytes

Contents

# frozen_string_literal: true

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

# frozen_string_literal: true

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

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

task default: %w[compile]

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

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
polyphony-http-0.28 Rakefile
polyphony-http-0.27 Rakefile
polyphony-http-0.26 Rakefile
polyphony-http-0.25 Rakefile
polyphony-http-0.24 Rakefile
polyphony-0.27 Rakefile
polyphony-0.26 Rakefile
polyphony-0.25 Rakefile
polyphony-0.24 Rakefile
polyphony-0.23 Rakefile
polyphony-0.22 Rakefile
polyphony-0.21 Rakefile
polyphony-0.20 Rakefile