Sha256: 794dfda86334ee75e98eccf9c9d9fc717146e70a7c93fd66add85ac413cc9651

Contents?: true

Size: 458 Bytes

Versions: 4

Compression:

Stored size: 458 Bytes

Contents

require 'mkmf'

have_header('Dummy Makefile')

unless find_executable('cargo')
  puts "You need to have Rust installed for this gem to build natively."
  puts "Please install the latest nightly build:"
  puts
  puts "curl -sSf https://static.rust-lang.org/rustup.sh | sudo sh -s -- --channel=nightly"
  puts
  END { puts "Exiting..."}
end

Dir.chdir('../../') do
  system("rake build_src")
  system("rake clean_src")
end

create_makefile('faster_path/dummy')

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
faster_path-0.1.1 ext/faster_path/extconf.rb
faster_path-0.1.0 ext/faster_path/extconf.rb
faster_path-0.0.9 ext/faster_path/extconf.rb
faster_path-0.0.8 ext/faster_path/extconf.rb