Sha256: bb248caac5b3c4f0e3a16d79a103bfd613d428139dda7f8a51b9f8e2ab5d524b

Contents?: true

Size: 328 Bytes

Versions: 6

Compression:

Stored size: 328 Bytes

Contents

# frozen_string_literal: true

require 'bundler/gem_tasks'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)

require 'rake/extensiontask'

task build: :compile

Rake::ExtensionTask.new('hnswlibext') do |ext|
  ext.ext_dir = 'ext/hnswlib'
  ext.lib_dir = 'lib/hnswlib'
end

task default: %i[clobber compile spec]

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
hnswlib-0.5.0 Rakefile
hnswlib-0.4.0 Rakefile
hnswlib-0.3.0 Rakefile
hnswlib-0.2.0 Rakefile
hnswlib-0.1.1 Rakefile
hnswlib-0.1.0 Rakefile