Sha256: 73a516b0ca0833f93586bd052b0e8a9813222faef1b500a916f2b6728a46fd1b

Contents?: true

Size: 409 Bytes

Versions: 8

Compression:

Stored size: 409 Bytes

Contents

# frozen_string_literal: true

require "bundler/gem_tasks"
require "rake/testtask"

Rake::TestTask.new(:test) do |t|
  t.libs << "test"
  t.libs << "lib"
  t.test_files = FileList["test/**/test_*.rb"].grep_v(/\/JSONTestSuite\//i)
end

require "rake/extensiontask"

task build: :compile

Rake::ExtensionTask.new("rapidjson") do |ext|
  ext.lib_dir = "lib/rapidjson"
end

task default: %i[clobber compile test]

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rapidjson-0.4.0 Rakefile
rapidjson-0.3.0 Rakefile
rapidjson-0.2.3 Rakefile
rapidjson-0.2.2 Rakefile
rapidjson-0.2.1 Rakefile
rapidjson-0.2.0 Rakefile
rapidjson-0.1.1 Rakefile
rapidjson-0.1.0 Rakefile