Sha256: 797543974bfa3f9c7b8a73837ec29f4da9540105f6a3c86b005b06bfb44b2473

Contents?: true

Size: 424 Bytes

Versions: 13

Compression:

Stored size: 424 Bytes

Contents

# frozen_string_literal: true

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

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

task :recompile => [:clean, :compile]

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

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

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
extralite-1.6 Rakefile
extralite-1.5 Rakefile
extralite-1.4 Rakefile
extralite-1.3 Rakefile
extralite-1.2 Rakefile
extralite-1.1 Rakefile
extralite-1.0 Rakefile
extralite-0.6 Rakefile
extralite-0.5 Rakefile
extralite-0.4 Rakefile
extralite-0.3 Rakefile
extralite-0.2.1 Rakefile
extralite-0.2 Rakefile